1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-09-11 16:10:45 +03:00
Files
libxslt/tests/REC/test-3.4-1.xsl
Nick Wellnhofer a1fff8aaf0 Fix xsl:strip-space with namespace and wildcard
* 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
2009-09-16 18:51:29 +02:00

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>