tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

test_bug433662.html (1239B)


      1 <!doctype html>
      2 <!--
      3 https://bugzilla.mozilla.org/show_bug.cgi?id=433662
      4 -->
      5 <title>Test for Bug 433662</title>
      6 <script src="/tests/SimpleTest/SimpleTest.js"></script>
      7 <link rel="stylesheet" href="/tests/SimpleTest/test.css"/>
      8 <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=433662">Mozilla Bug 433662</a>
      9 <script>
     10 
     11 /** Test for Bug 433662 */
     12 var range = document.createRange();
     13 range.setStart(document.body, 0);
     14 range.insertNode(document.createComment("abc"));
     15 is(document.body.firstChild.nodeType, Node.COMMENT_NODE,
     16   "Comment must be inserted (start of node)");
     17 is(document.body.firstChild.nodeValue, "abc",
     18   "Comment must have right contents (start of node)");
     19 is(range.endOffset, 1,
     20   "insertNode() needs to include the newly-added node (start of node)");
     21 
     22 range.setStart(document.body, document.body.childNodes.length);
     23 range.insertNode(document.createComment("def"));
     24 is(document.body.lastChild.nodeType, Node.COMMENT_NODE,
     25   "Comment must be inserted (end of node)");
     26 is(document.body.lastChild.nodeValue, "def",
     27   "Comment must have right contents (end of node)");
     28 is(range.endOffset, document.body.childNodes.length,
     29   "insertNode() needs to include the newly-added node (end of node)");
     30 
     31 </script>