content/base/test/test_bug433662.html

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     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>
    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)");
    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)");
    31 </script>

mercurial