mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-09-14 05:09:26 +03:00
* 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
19 lines
290 B
XML
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>
|