xref: /aosp_15_r20/external/apache-xml/test/tests/conf/numbering/numbering79.xsl (revision 1212f9a0ffdc28482b8821715d2222bf16dc14e2)
1<?xml version="1.0"?>
2<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
3
4  <!-- CaseName: numbering79 -->
5  <!-- Author: David Marston -->
6  <!-- Purpose: Test of non-numeric assignment to value attribute. -->
7  <!-- SpecCitation: Rec="XSLT" Version="1.0" type="OASISptr1" place="id(number)/p[1]/text()[5]" -->
8  <!-- SpecCitation: Rec="XSLT" Version="1.0" type="OASISptr1" place="id(number)/ulist[1]/item[1]/p[1]/text()[5]" -->
9  <!-- SpecCitation: Rec="XSLT" Version="1.0" type="OASISptr1" place="id(number)/ulist[1]/item[2]/p[1]/text()[3]" -->
10  <!-- SpecCitation: Rec="XSLT" Version="1.0" type="OASISptr1" place="id(convert)/p[2]/text()[5]" -->
11  <!-- SpecCitation: Rec="XSLT" Version="1.0" type="OASISptr1" place="id(convert)/ulist[1]/item[1]/p[1]/text()[1]" -->
12  <!-- Scenario: operation="standard-XML" -->
13  <!-- Should come out as zero every time. -->
14  <!-- Discretionary: number-not-positive="pass-through" -->
15  <!-- Gray-area: number-NaN-handling="pass-through" -->
16
17<xsl:template match="doc">
18  <out>
19    <xsl:apply-templates/>
20  </out>
21</xsl:template>
22
23<xsl:template match="chapter">
24  <xsl:for-each select="note">
25    <xsl:number format="(1) " value="wiseguy" /><xsl:value-of select="."/>
26    <xsl:text>&#10;</xsl:text>
27  </xsl:for-each>
28</xsl:template>
29
30
31  <!--
32   * Licensed to the Apache Software Foundation (ASF) under one
33   * or more contributor license agreements. See the NOTICE file
34   * distributed with this work for additional information
35   * regarding copyright ownership. The ASF licenses this file
36   * to you under the Apache License, Version 2.0 (the  "License");
37   * you may not use this file except in compliance with the License.
38   * You may obtain a copy of the License at
39   *
40   *     http://www.apache.org/licenses/LICENSE-2.0
41   *
42   * Unless required by applicable law or agreed to in writing, software
43   * distributed under the License is distributed on an "AS IS" BASIS,
44   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
45   * See the License for the specific language governing permissions and
46   * limitations under the License.
47  -->
48
49</xsl:stylesheet>
50