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=430251 |
michael@0 | 5 | --> |
michael@0 | 6 | <head> |
michael@0 | 7 | <title>postMessage's interaction with pages at jar: URIs</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 | <base href="http://mochi.test:8888/" /> |
michael@0 | 12 | </head> |
michael@0 | 13 | <body> |
michael@0 | 14 | <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=430251">Mozilla Bug 430251</a> |
michael@0 | 15 | <p id="display"></p> |
michael@0 | 16 | <div id="content" style="display: none"></div> |
michael@0 | 17 | |
michael@0 | 18 | <iframe src="jar:http://mochi.test:8888/tests/dom/tests/mochitest/whatwg/postMessage.jar!/postMessage_jar.html" |
michael@0 | 19 | name="kid"></iframe> |
michael@0 | 20 | |
michael@0 | 21 | <pre id="test"> |
michael@0 | 22 | <script class="testbody" type="application/javascript"> |
michael@0 | 23 | /** Test for Bug 430251 **/ |
michael@0 | 24 | |
michael@0 | 25 | SimpleTest.waitForExplicitFinish(); |
michael@0 | 26 | |
michael@0 | 27 | function receiveMessage(evt) |
michael@0 | 28 | { |
michael@0 | 29 | is(evt.origin, "http://mochi.test:8888", "wrong sender"); |
michael@0 | 30 | ok(evt.source === window.frames.kid, "wrong source"); |
michael@0 | 31 | |
michael@0 | 32 | is(evt.data, "finish-test", "wrong data"); |
michael@0 | 33 | is(evt.lastEventId, "", "wrong lastEventId"); |
michael@0 | 34 | |
michael@0 | 35 | SimpleTest.finish(); |
michael@0 | 36 | } |
michael@0 | 37 | |
michael@0 | 38 | window.addEventListener("message", receiveMessage, false); |
michael@0 | 39 | |
michael@0 | 40 | function run() |
michael@0 | 41 | { |
michael@0 | 42 | window.frames.kid.postMessage("start-test", "http://mochi.test:8888"); |
michael@0 | 43 | } |
michael@0 | 44 | |
michael@0 | 45 | window.addEventListener("load", run, false); |
michael@0 | 46 | </script> |
michael@0 | 47 | </pre> |
michael@0 | 48 | </body> |
michael@0 | 49 | </html> |