mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-09-11 16:10:45 +03:00
* libxslt/imports.c: xsl:strip-space didn't work if there is a NameTest with a namespace and a wildcard * tests/REC/Makefile.am tests/REC/test-3.4-*: add some test to the regression suite
12 lines
302 B
XML
12 lines
302 B
XML
<xsl:stylesheet
|
|
version="1.0"
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
xmlns:foo1="urn:foo1"
|
|
xmlns:foo2="urn:foo2"
|
|
>
|
|
<xsl:strip-space elements="foo1:element1"/>
|
|
<xsl:template match="doc">
|
|
<xsl:apply-templates select="*/*"/>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|