1<?xml version="1.0"?> 2<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> 3 4 <!-- FileName: attribset06 --> 5 <!-- Document: http://www.w3.org/TR/xslt --> 6 <!-- DocVersion: 19991116 --> 7 <!-- Section: 7.1.4 Named Attribute Sets --> 8 <!-- Creator: Paul Dick --> 9 <!-- Purpose: Set attributes of a LRE using attribute sets that 10 inherit, plus add overlapping attribute with xsl:attribute. --> 11 12<xsl:template match="/"> 13 <out> 14 <test1 xsl:use-attribute-sets="set1"> 15 <xsl:attribute name="text-decoration">none</xsl:attribute> 16 </test1> 17 </out> 18</xsl:template> 19 20<xsl:attribute-set name="set2" use-attribute-sets="set3"> 21 <xsl:attribute name="text-decoration">underline</xsl:attribute> 22</xsl:attribute-set> 23 24<xsl:attribute-set name="set1" use-attribute-sets="set2"> 25 <xsl:attribute name="color">black</xsl:attribute> 26</xsl:attribute-set> 27 28<xsl:attribute-set name="set3"> 29 <xsl:attribute name="font-size">14pt</xsl:attribute> 30</xsl:attribute-set> 31 32 33 <!-- 34 * Licensed to the Apache Software Foundation (ASF) under one 35 * or more contributor license agreements. See the NOTICE file 36 * distributed with this work for additional information 37 * regarding copyright ownership. The ASF licenses this file 38 * to you under the Apache License, Version 2.0 (the "License"); 39 * you may not use this file except in compliance with the License. 40 * You may obtain a copy of the License at 41 * 42 * http://www.apache.org/licenses/LICENSE-2.0 43 * 44 * Unless required by applicable law or agreed to in writing, software 45 * distributed under the License is distributed on an "AS IS" BASIS, 46 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 47 * See the License for the specific language governing permissions and 48 * limitations under the License. 49 --> 50 51</xsl:stylesheet> 52