blob: 53cd18d5b5a38fe23d57aca0c75e2f89f8f7519b [file] [log] [blame]
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<!-- FileName: attribvaltemplate09 -->
<!-- Document: http://www.w3.org/TR/xslt -->
<!-- DocVersion: 19991116 -->
<!-- Section: 7.6.2 -->
<!-- Purpose: Testing generation of null attribute.
Bug: if $From was null, it was not outputting the attribute. -->
<!-- Author: Geoff Crowther -->
<xsl:param name="From"/>
<xsl:template match="/">
<out>
<setvar name="From" value="{$From}"/>
</out>
</xsl:template>
</xsl:stylesheet>