haikuwebkit/LayoutTests/fast/xsl/resources/xslt-missing-namespace-in-x...

13 lines
493 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" encoding="UTF-8"/>
<xsl:template match="TEST">
<html xmlns="http://www.w3.org/1999/xhtml">
<body>
<p>You should see error text above this</p>
<foo:bar />
<p>ERROR? this, and nothing below it should be rendered</p>
</body>
</html>
</xsl:template>
</xsl:stylesheet>