content/base/test/test_bug433662.html

Sat, 03 Jan 2015 20:18:00 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Jan 2015 20:18:00 +0100
branch
TOR_BUG_3246
changeset 7
129ffea94266
permissions
-rw-r--r--

Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.

     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