summaryrefslogtreecommitdiff
path: root/tests/general/bug-190.xsl
blob: fbaf97e1e5ea5aee2d576c394c4bcf3840ccae11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<xsl:stylesheet
  version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:ns1="urn:foo"
  exclude-result-prefixes="ns1">

  <xsl:import href="bug-190-imp.xsl"/>
  <xsl:output indent="yes"/>

  <xsl:template match="/">
    <result>
      <elem xsl:use-attribute-sets="ns1:set"/>
    </result>
  </xsl:template>

</xsl:stylesheet>