1
0
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:
Daniel Veillard
2002-04-14 22:05:55 +00:00
parent b757872ded
commit 4ec7719012
5 changed files with 17 additions and 0 deletions

View File

@@ -83,6 +83,7 @@ EXTRA_DIST = \
bug-80.xml \
bug-81.xml \
bug-82.xml \
bug-83.xml \
character.xml \
array.xml \
items.xml

1
tests/docs/bug-83.xml Normal file
View File

@@ -0,0 +1 @@
<doc/>

View File

@@ -86,6 +86,7 @@ EXTRA_DIST = \
bug-80.out bug-80.xsl \
bug-81.out bug-81.xsl \
bug-82.out bug-82.xsl \
bug-83.out bug-83.xsl \
character.out character.xsl \
character2.out character2.xsl \
itemschoose.out itemschoose.xsl \

1
tests/general/bug-83.out Normal file
View File

@@ -0,0 +1 @@
<a href="a%20b%20c"></a>

13
tests/general/bug-83.xsl Normal file
View 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>