1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-09-14 05:09:26 +03:00
Files
libxslt/tests/general/bug-127.xsl
Daniel Veillard 499f390740 added the test from bug #118763 to the regression suite. Daniel
* 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
2003-08-04 01:37:11 +00:00

19 lines
290 B
XML

<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>