gecko-dev/dom/xslt/crashtests/1205163.xsl
Peter Van der Beken 78adaf671d Bug 1205163: Set readystate correctly for XSLT result with output=text. r=sicking.
--HG--
extra : rebase_source : e3063322df57ed44cb8247b6c129f024f2fe40ce
2015-09-23 15:34:36 +02:00

12 lines
317 B
XML

<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text"/>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="Error"/>
</xsl:stylesheet>