1<?xml version="1.0"?> 2<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" 3 xmlns:cnn="http://www.cnn.com"> 4 5 6<xsl:output method="xml"/> 7 8 <!-- FileName: --> 9 <!-- Document: http://www.w3.org/TR/xpath --> 10 <!-- DocVersion: 19991116 --> 11 <!-- Section: 2.2 --> 12 <!-- Purpose: Test has no exceptions. --> 13 14<xsl:template match="/"> 15<root> 16<data1 attr1="hello" attr2="goodbye"> 17<data2 attr1="goodbye" attr2="hello"> 18<data3 attr1="hello" attr2="goodbye"> 19<data4 attr1="goodbye" attr2="hello"> 20<data5 attr1="hello" attr2="goodbye"> 21<data6 attr1="goodbye" attr2="hello"> 22<data7 attr1="hello" attr2="goodbye"> 23<data8 attr1="goodbye" attr2="hello"> 24<data9 attr1="hello" attr2="bad"> 25<data10 attr1="goodbye" attr2="hello"> 26<data11 attr1="hello" attr2="goodbye"> 27<data12 attr1="goodbye" attr2="hello"> 28<data13 attr1="What in the world"> 29<data14 attr1="olleh" xyz:attr2="eybdoog" xmlns:xyz="http://www.xyz.com">Duck</data14> 30</data13> 31</data12> 32</data11> 33</data10> 34</data9> 35</data8> 36</data7> 37</data6> 38</data5> 39</data4> 40</data3> 41</data2> 42</data1> 43</root> 44</xsl:template> 45 46 47 <!-- 48 * Licensed to the Apache Software Foundation (ASF) under one 49 * or more contributor license agreements. See the NOTICE file 50 * distributed with this work for additional information 51 * regarding copyright ownership. The ASF licenses this file 52 * to you under the Apache License, Version 2.0 (the "License"); 53 * you may not use this file except in compliance with the License. 54 * You may obtain a copy of the License at 55 * 56 * http://www.apache.org/licenses/LICENSE-2.0 57 * 58 * Unless required by applicable law or agreed to in writing, software 59 * distributed under the License is distributed on an "AS IS" BASIS, 60 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 61 * See the License for the specific language governing permissions and 62 * limitations under the License. 63 --> 64 65</xsl:stylesheet> 66