content/html/document/test/test_bug481440.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 <!--Test must be in quirks mode for document.all to work-->
     2 <html>
     3 <!--
     4 https://bugzilla.mozilla.org/show_bug.cgi?id=481440
     5 -->
     6 <head>
     7   <title>Test for Bug 481440</title>
     8   <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
     9   <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
    10 </head>
    11 <body>
    12 <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=481440">Mozilla Bug 481440</a>
    13 <p id="display"></p>
    14 <div id="content" style="display: none">
    15   <input name="x" id="y">
    16 </div>
    17 <pre id="test">
    18 <script type="application/javascript">
    20 /** Test for Bug 481440 **/
    21 // Do a bunch of getElementById calls to catch hashtables auto-going live
    22 for (var i = 0; i < 500; ++i) {
    23   document.getElementById(i);
    24 }
    25 is(document.all["x"], document.getElementById("y"),
    26    "Unexpected node");
    27 </script>
    28 </pre>
    29 </body>
    30 </html>

mercurial