Tue, 06 Jan 2015 21:39:09 +0100
Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.
michael@0 | 1 | <!DOCTYPE html> |
michael@0 | 2 | <html> |
michael@0 | 3 | <!-- |
michael@0 | 4 | https://bugzilla.mozilla.org/show_bug.cgi?id=postMessage |
michael@0 | 5 | --> |
michael@0 | 6 | <head> |
michael@0 | 7 | <title>postMessage with document.domain setting to join origins</title> |
michael@0 | 8 | <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> |
michael@0 | 9 | <script type="text/javascript" src="browserFu.js"></script> |
michael@0 | 10 | <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" /> |
michael@0 | 11 | </head> |
michael@0 | 12 | <body> |
michael@0 | 13 | <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=postMessage">Mozilla Bug 387706</a> |
michael@0 | 14 | <p id="display"></p> |
michael@0 | 15 | <div id="content" style="display: none"></div> |
michael@0 | 16 | |
michael@0 | 17 | <iframe src="http://sub1.test1.example.org/tests/dom/tests/mochitest/whatwg/postMessage_joined_helper.html" |
michael@0 | 18 | name="container"></iframe> |
michael@0 | 19 | |
michael@0 | 20 | |
michael@0 | 21 | <pre id="test"> |
michael@0 | 22 | <script class="testbody" type="application/javascript"> |
michael@0 | 23 | /** Test for Bug 387706 **/ |
michael@0 | 24 | |
michael@0 | 25 | SimpleTest.waitForExplicitFinish(); |
michael@0 | 26 | |
michael@0 | 27 | function receiveTestResult(evt) |
michael@0 | 28 | { |
michael@0 | 29 | ok(evt instanceof MessageEvent, "umm, how did we get this?"); |
michael@0 | 30 | is(evt.type, "message", "expected events of type 'message'"); |
michael@0 | 31 | |
michael@0 | 32 | if (isMozilla) |
michael@0 | 33 | { |
michael@0 | 34 | ok(evt.isTrusted === false, "shouldn't have been a trusted event"); |
michael@0 | 35 | } |
michael@0 | 36 | |
michael@0 | 37 | is(evt.lastEventId, "", "postMessage creates events with empty lastEventId"); |
michael@0 | 38 | |
michael@0 | 39 | // Either we passed the test or we failed it. The message's |
michael@0 | 40 | // contents should help to diagnose the failure. Either way, |
michael@0 | 41 | // consider this the end of the test. |
michael@0 | 42 | is(evt.data, "test-passed", "unexpected test result"); |
michael@0 | 43 | SimpleTest.finish(); |
michael@0 | 44 | } |
michael@0 | 45 | |
michael@0 | 46 | function setup() |
michael@0 | 47 | { |
michael@0 | 48 | window.addEventListener("message", receiveTestResult, false); |
michael@0 | 49 | window.frames.container.postMessage("start-test", |
michael@0 | 50 | "http://sub1.test1.example.org"); |
michael@0 | 51 | } |
michael@0 | 52 | |
michael@0 | 53 | addLoadEvent(setup); |
michael@0 | 54 | |
michael@0 | 55 | </script> |
michael@0 | 56 | </pre> |
michael@0 | 57 | </body> |
michael@0 | 58 | </html> |