dom/events/test/test_bug336682_1.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.

michael@0 1 <!DOCTYPE HTML>
michael@0 2 <html>
michael@0 3 <!--
michael@0 4 Bug 336682: online/offline events tests.
michael@0 5
michael@0 6 Any copyright is dedicated to the Public Domain.
michael@0 7 http://creativecommons.org/licenses/publicdomain/
michael@0 8 -->
michael@0 9 <head>
michael@0 10 <title>Test for Bug 336682 (online/offline events)</title>
michael@0 11 <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
michael@0 12 <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
michael@0 13 </head>
michael@0 14 <body ononline="trace('<body ononline=...>');
michael@0 15 bodyOnonline(this, event)"
michael@0 16 onoffline="trace('<body onoffline=...>'); bodyOnoffline(this, event)"
michael@0 17 >
michael@0 18 <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=336682">Mozilla Bug 336682</a>
michael@0 19 <p id="display"></p>
michael@0 20 <div id="content" style="display: none">
michael@0 21
michael@0 22 </div>
michael@0 23 <pre id="test">
michael@0 24 </pre>
michael@0 25 <script type="text/javascript" src="test_bug336682.js"></script>
michael@0 26
michael@0 27 <script class="testbody" type="text/javascript">
michael@0 28
michael@0 29 function makeBodyHandler(eventName) {
michael@0 30 return function (aThis, aEvent) {
michael@0 31 var handler = makeHandler("<body on%1='...'>", eventName, [3,4]);
michael@0 32 handler(aEvent);
michael@0 33 }
michael@0 34 }
michael@0 35 addLoadEvent(function() {
michael@0 36 /** @see test_bug336682.js */
michael@0 37 MAX_STATE = 4;
michael@0 38
michael@0 39 for (var event of ["online", "offline"]) {
michael@0 40 document.body.addEventListener(
michael@0 41 event,
michael@0 42 makeHandler("document.body.addEventListener('%1', ..., false)",
michael@0 43 event, [1]),
michael@0 44 false);
michael@0 45
michael@0 46 document.addEventListener(
michael@0 47 event,
michael@0 48 makeHandler("document.addEventListener('%1', ..., false)",
michael@0 49 event, [2]),
michael@0 50 false);
michael@0 51
michael@0 52 window["bodyOn" + event] = makeBodyHandler(event);
michael@0 53
michael@0 54 window.addEventListener(
michael@0 55 event,
michael@0 56 makeHandler("window.addEventListener('%1', ..., false)",
michael@0 57 event, [3,4]),
michael@0 58 false);
michael@0 59 }
michael@0 60
michael@0 61 doTest();
michael@0 62 SimpleTest.finish();
michael@0 63 });
michael@0 64
michael@0 65 SimpleTest.waitForExplicitFinish();
michael@0 66 </script>
michael@0 67 </body>
michael@0 68 </html>

mercurial