summaryrefslogtreecommitdiffstats
path: root/dom/xslt/tests/mochitest/test_bug468208.html
blob: d3c05c73740e5f490fb211e98cb0506d8407f7e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=468208
-->
<head>
  <title>Test for Bug 468208</title>
  <script 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>