summaryrefslogtreecommitdiff
path: root/tests/general/bug-102-inc.xsl
blob: 03d3368395525a265287c237d96b84d6352b9091 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" 
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="html"/>
 
  <xsl:attribute-set name="foo-attribs">
    <xsl:attribute name="size">+1</xsl:attribute>
  </xsl:attribute-set>

  <xsl:attribute-set name="foo-dep-attribs"
    use-attribute-sets="foo-attribs">
    <xsl:attribute name="text-align">start</xsl:attribute>
  </xsl:attribute-set>
 
  <xsl:template match="/">
    <font xsl:use-attribute-sets="foo-dep-attribs">
    foo
    </font>
  </xsl:template>
 
</xsl:stylesheet>