gecko/content/xslt/tests/mochitest/test_bug468208.html
Ted Shroyer b97e71e237 Bug 765890 - Alter mochitests/jsreftests to pass when javascript.options.xml.content defaults to false. r=jorendorff.
--HG--
extra : rebase_source : 12bd1c7b597c4834424876ac797cf7c118434d5e
2012-07-20 14:00:53 -05:00

36 lines
946 B
HTML

<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=468208
-->
<head>
<title>Test for Bug 468208</title>
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=468208">Mozilla Bug 468208</a>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script class="testbody" type="text/javascript">
/** Test for Bug 468208 **/
var xslt =
'<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">\n\
<xsl:strip-space elements="color"/>\n\
</xsl:stylesheet>'
;
var xsltdoc = new DOMParser().parseFromString(xslt, "text/xml");
var processor = new XSLTProcessor;
processor.importStylesheet(xsltdoc);
ok(true, "XSLT shouldn't leak");
</script>
</pre>
</body>
</html>