blob: 670f6b9e205018471c394dc0acd5af2e0ca79beb [file] [log] [blame]
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<!-- FileName: conditionalerr13 -->
<!-- Document: http://www.w3.org/TR/xslt -->
<!-- DocVersion: 19991116 -->
<!-- Section: 9.2 -->
<!-- Creator: David Marston -->
<!-- Purpose: Test xsl:when lacking the "test" attribute. -->
<!-- ExpectedException: xsl:when must have a 'test' attribute -->
<!-- ExpectedException: xsl:when requires attribute: test -->
<xsl:template match="doc">
<out>
<xsl:choose>
<xsl:when>1</xsl:when>
<xsl:otherwise>0</xsl:otherwise>
</xsl:choose>
</out>
</xsl:template>
</xsl:stylesheet>