gecko-dev/dom/xslt/crashtests/1330492.html
Ryan VanderMeulen c336a4160a Bug 1330492 - Check for nsIDocument::READYSTATE_INTERACTIVE if mObserver is null. r=peterv
--HG--
extra : rebase_source : 262eef6939cd541990962ff439204619e28180df
2017-09-28 12:18:30 -04:00

23 lines
710 B
HTML
Executable File

<!DOCTYPE html>
<html>
<meta charset="UTF-8">
<script id=o_xml type="text/plain"><?xml version="1.0" encoding="UTF-8"?>
<ffsy></ffsy>
</script>
<script id=o_xslt type="text/plain"><?xml version="1.0" encoding="UTF-8"?>
<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="text" />
</xsl:transform>
</script>
<script>
addEventListener("DOMContentLoaded", function(){
let doc = new DOMParser();
let xml = doc.parseFromString(o_xml.textContent, "text/xml");
let xsltPrs = new XSLTProcessor();
let xsl = doc.parseFromString(o_xslt.textContent, "text/xml");
xsltPrs.importStylesheet(xsl);
xsltPrs.transformToFragment(xml, document);
});
</script>
</html>