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