blob: 65cb390bd232cb71fc8dc900a51e0942568d4494 [file] [log] [blame]
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<!-- FileName: variable30 -->
<!-- Document: http://www.w3.org/TR/xslt -->
<!-- DocVersion: 19991116 -->
<!-- Section: 11.4 Top-level Variables and Parameters -->
<!-- Purpose: Import precedence applies to top-level params
(start at bottom; all use variable set in middle) -->
<!-- Author: David Marston -->
<xsl:import href="var30mid.xsl"/>
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="a">
<xsl:text>
In main: </xsl:text><xsl:value-of select="$test"/>
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="c">
<xsl:text>
In main again: </xsl:text><xsl:value-of select="$test"/>
</xsl:template>
</xsl:stylesheet>