added the test from bug #118763 to the regression suite. Daniel
authorDaniel Veillard <veillard@src.gnome.org>
Mon, 4 Aug 2003 01:37:11 +0000 (01:37 +0000)
committerDaniel Veillard <veillard@src.gnome.org>
Mon, 4 Aug 2003 01:37:11 +0000 (01:37 +0000)
* tests/docs/Makefile.am tests/docs/bug-127.*
  tests/general/Makefile.am tests/general/bug-127*: added the
  test from bug #118763 to the regression suite.
Daniel

ChangeLog
tests/docs/Makefile.am
tests/docs/bug-127.xml [new file with mode: 0644]
tests/general/Makefile.am
tests/general/bug-127.out [new file with mode: 0644]
tests/general/bug-127.xsl [new file with mode: 0644]

index 05cfea9..5d3d515 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Sun Aug  3 21:34:44 EDT 2003 Daniel Veillard <daniel@veillard.com>
+
+       * tests/docs/Makefile.am tests/docs/bug-127.*
+         tests/general/Makefile.am tests/general/bug-127*: added the
+         test from bug #118763 to the regression suite.
+
 Sun Aug  3 17:40:13 EDT 2003 Daniel Veillard <daniel@veillard.com>
 
        * xsltproc/xsltproc.c: minor change, avoid wasting CPU cycles
index 62361d3..873b4b1 100644 (file)
@@ -126,6 +126,7 @@ EXTRA_DIST =        \
        bug-124.xml \
        bug-125.xml \
        bug-126.xml \
+       bug-127.xml \
        character.xml \
        array.xml \
        items.xml
diff --git a/tests/docs/bug-127.xml b/tests/docs/bug-127.xml
new file mode 100644 (file)
index 0000000..69d62f2
--- /dev/null
@@ -0,0 +1 @@
+<doc/>
index 4091d23..a37d449 100644 (file)
@@ -131,6 +131,7 @@ EXTRA_DIST = \
     bug-124.out bug-124.xsl \
     bug-125.out bug-125.xsl \
     bug-126.out bug-126.xsl \
+    bug-127.out bug-127.xsl \
     character.out character.xsl \
     character2.out character2.xsl \
     itemschoose.out itemschoose.xsl \
diff --git a/tests/general/bug-127.out b/tests/general/bug-127.out
new file mode 100644 (file)
index 0000000..dcc23aa
--- /dev/null
@@ -0,0 +1 @@
+<html><body><input type="text" value="&quot;'&quot;"></body></html>
diff --git a/tests/general/bug-127.xsl b/tests/general/bug-127.xsl
new file mode 100644 (file)
index 0000000..c5669dd
--- /dev/null
@@ -0,0 +1,18 @@
+<xsl:stylesheet
+    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+    version="1.0"
+>
+
+<xsl:output method="html"/>
+
+<xsl:variable name='var'>"'"</xsl:variable>
+
+<xsl:template match="/">
+<html>
+<body>
+<input type="text" value="{$var}"/>
+</body>
+</html>
+</xsl:template>
+
+</xsl:stylesheet>