4 https://bugzilla.mozilla.org/show_bug.cgi?id=358660
7 <title>Test for Bug
358660</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=358660">Mozilla Bug
358660</a>
15 <div id=
"content" style=
"display: none">
16 <iframe id=
"testframe"
17 src=
"data:text/html,<html><body>Some text</body></html>"></iframe>
20 <script class=
"testbody" type=
"text/javascript">
22 /** Test for Bug
358660 **/
23 SimpleTest.waitForExplicitFinish();
25 window.onload = function() {
26 var doc = $(
"testframe").contentDocument;
27 var range = doc.createRange();
28 range.selectNode(doc.documentElement);
29 is(range.toString(),
"Some text",
"Check text");