summaryrefslogtreecommitdiff
path: root/tests/general/bug-27-.xsl
blob: 1dedad9e51549bc7852a417fd4e8616a9aff5bbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
		version="1.0">
  <xsl:attribute-set name="my-attr-set">
    <xsl:attribute name="attr">from-attr-set</xsl:attribute>
  </xsl:attribute-set>

  <xsl:template match="/">
    <p xsl:use-attribute-sets="my-attr-set" attr="from-p-tag">
      <xsl:attribute name="attr">from-xsl-attr</xsl:attribute>
    </p>
  </xsl:template>

</xsl:stylesheet>