mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-11-02 13:33:20 +03:00
Oops actually forgot to cvs add the new test, Daniel
This commit is contained in:
@@ -83,6 +83,7 @@ EXTRA_DIST = \
|
|||||||
bug-80.xml \
|
bug-80.xml \
|
||||||
bug-81.xml \
|
bug-81.xml \
|
||||||
bug-82.xml \
|
bug-82.xml \
|
||||||
|
bug-83.xml \
|
||||||
character.xml \
|
character.xml \
|
||||||
array.xml \
|
array.xml \
|
||||||
items.xml
|
items.xml
|
||||||
|
|||||||
1
tests/docs/bug-83.xml
Normal file
1
tests/docs/bug-83.xml
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<doc/>
|
||||||
@@ -86,6 +86,7 @@ EXTRA_DIST = \
|
|||||||
bug-80.out bug-80.xsl \
|
bug-80.out bug-80.xsl \
|
||||||
bug-81.out bug-81.xsl \
|
bug-81.out bug-81.xsl \
|
||||||
bug-82.out bug-82.xsl \
|
bug-82.out bug-82.xsl \
|
||||||
|
bug-83.out bug-83.xsl \
|
||||||
character.out character.xsl \
|
character.out character.xsl \
|
||||||
character2.out character2.xsl \
|
character2.out character2.xsl \
|
||||||
itemschoose.out itemschoose.xsl \
|
itemschoose.out itemschoose.xsl \
|
||||||
|
|||||||
1
tests/general/bug-83.out
Normal file
1
tests/general/bug-83.out
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<a href="a%20b%20c"></a>
|
||||||
13
tests/general/bug-83.xsl
Normal file
13
tests/general/bug-83.xsl
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||||
|
xmlns:fo="http://www.w3.org/1999/XSL/Format"
|
||||||
|
version="1.0">
|
||||||
|
<xsl:output method="html"
|
||||||
|
encoding="ISO-8859-1"
|
||||||
|
indent="no"/>
|
||||||
|
|
||||||
|
|
||||||
|
<xsl:template match="*">
|
||||||
|
<a href="a b c"/>
|
||||||
|
</xsl:template>
|
||||||
|
</xsl:stylesheet>
|
||||||
Reference in New Issue
Block a user