4 https://bugzilla.mozilla.org/show_bug.cgi?id=420700
7 <title>Test for Bug
420700</title>
8 <script type=
"text/javascript" src=
"/MochiKit/MochiKit.js"></script>
9 <script type=
"text/javascript" src=
"/tests/SimpleTest/SimpleTest.js"></script>
10 <link rel=
"stylesheet" type=
"text/css" href=
"/tests/SimpleTest/test.css" />
13 <a target=
"_blank" href=
"https://bugzilla.mozilla.org/show_bug.cgi?id=420700">Mozilla Bug
420700</a>
15 <div id=
"content" style=
"display: none">
19 <script class=
"testbody" type=
"text/javascript">
21 var r = document.createRange();
22 r.selectNode(document.documentElement);
24 var df = r.createContextualFragment(
"<p>BAD</p>");
26 var display = document.getElementById(
"display");
27 display.innerHTML =
"<p>GOOD</p>";
29 var p = display.firstChild;
31 is(p.textContent,
"GOOD",
"createContextualFragment tests");