mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-09-14 05:09:26 +03:00
* tests/REC/test-8-1.xsl tests/REC/test-9.1-2.xsl tests/general/bug-83.xsl tests/multiple/dict.xsl: added some exclude-result-prefixes to avoid extra namespace declaration being dumped following the fix for #102920 in libxml2 Daniel
15 lines
381 B
XML
15 lines
381 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
xmlns:fo="http://www.w3.org/1999/XSL/Format"
|
|
exclude-result-prefixes="fo"
|
|
version="1.0">
|
|
<xsl:output method="html"
|
|
encoding="ISO-8859-1"
|
|
indent="no"/>
|
|
|
|
|
|
<xsl:template match="*">
|
|
<a href="a b c"/>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|