This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.
This test uses namespace prefix "xsl" which is not defined in the stylesheet. I presume it should have been 't'. <?xml version="1.0" encoding="UTF-8"?> <t:transform xmlns:t="http://www.w3.org/1999/XSL/Transform" version="2.0"> <!-- Purpose: Test case to verify that an static error is raised if a reserved namespace is used in the name of a named template. --> <t:output method="xml" encoding="UTF-8" indent="no"/> <t:template match="/"> <t:call-template name="xsl:temp"/> </t:template> <t:template name="xsl:temp"> <t:text> Do Nothing! </t:text> </t:template> </t:transform>
Fixed as suggested.
Confirmed fixed. Thanks.