1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-09-14 05:09:26 +03:00
Files
libxslt/tests/general/bug-74.xsl
Daniel Veillard f2b9b8bb9d added a specific example for bug #71342 in the regression tests fixing
* tests/docs/Makefile.am tests/docs/bug-74.xml
  tests/general/Makefile.am tests/general/bug-74.*: added a
  specific example for bug #71342 in the regression tests
* tests/docbook/result/xhtml/gdp-handbook.xhtml: fixing
  #71342 changed one attribute serialization.
Daniel
2002-02-13 13:24:01 +00:00

13 lines
305 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:output method="xml" encoding="UTF-8"/>
<xsl:template match="TestNode">
<select>
<xsl:attribute name="onclick">aaaa
bbbb</xsl:attribute>
</select>
</xsl:template>
</xsl:stylesheet>