~ubuntu-branches/ubuntu/quantal/netbeans/quantal

« back to all changes in this revision

Viewing changes to xml/xsl/api/test/unit/src/org/netbeans/modules/xslt/model/resources/test_modified_literal.xsl

  • Committer: Bazaar Package Importer
  • Author(s): Marek Slama
  • Date: 2008-01-29 14:11:22 UTC
  • Revision ID: james.westby@ubuntu.com-20080129141122-fnzjbo11ntghxfu7
Tags: upstream-6.0.1
ImportĀ upstreamĀ versionĀ 6.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<xsl:stylesheet version="1.0"
 
2
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 
3
                
 
4
<xsl:param name="param1"/>
 
5
                
 
6
<xsl:output method="text" indent="yes" omit-xml-declaration = "yes"/>
 
7
    
 
8
<xsl:variable name="var1" select="'a'"/>    
 
9
    
 
10
<xsl:template match="/">
 
11
        text1
 
12
        <!-- comment -->
 
13
        <![CDATA[ cdata 
 
14
        cd_next
 
15
        ]]>
 
16
        <?processingInstruction ?>
 
17
        text2
 
18
    <xsl:apply-templates/>
 
19
    TEXT
 
20
    <br/>
 
21
    <literal/>
 
22
    last_text
 
23
</xsl:template>
 
24
 
 
25
<xsl:template match="/"/>
 
26
 
 
27
<xsl:variable name="var2" select="'a'"/>
 
28
 
 
29
<xsl:param name="param2"/>
 
30
 
 
31
</xsl:stylesheet>