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 | <head> |
michael@0 | 4 | <title>postMessage's interaction with hash URIs</title> |
michael@0 | 5 | <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> |
michael@0 | 6 | <script type="text/javascript" src="browserFu.js"></script> |
michael@0 | 7 | <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" /> |
michael@0 | 8 | <base href="http://example.com/" /> |
michael@0 | 9 | </head> |
michael@0 | 10 | <body> |
michael@0 | 11 | <p>(no bug; this is a preemptive test)</p> |
michael@0 | 12 | <p id="display"></p> |
michael@0 | 13 | <div id="content" style="display: none"></div> |
michael@0 | 14 | |
michael@0 | 15 | <iframe src="http://mochi.test:8888/tests/dom/tests/mochitest/whatwg/postMessage_hash.html#hash" |
michael@0 | 16 | name="kid"></iframe> |
michael@0 | 17 | |
michael@0 | 18 | <pre id="test"> |
michael@0 | 19 | <script class="testbody" type="application/javascript"> |
michael@0 | 20 | |
michael@0 | 21 | SimpleTest.waitForExplicitFinish(); |
michael@0 | 22 | |
michael@0 | 23 | function receiveMessage(evt) |
michael@0 | 24 | { |
michael@0 | 25 | is(evt.origin, "http://mochi.test:8888", "wrong origin"); |
michael@0 | 26 | ok(evt.source === window.frames.kid, "wrong source"); |
michael@0 | 27 | is(evt.lastEventId, "", "postMessage creates events with empty lastEventId"); |
michael@0 | 28 | |
michael@0 | 29 | is(evt.data, "response-message", "wrong data"); |
michael@0 | 30 | |
michael@0 | 31 | SimpleTest.finish(); |
michael@0 | 32 | } |
michael@0 | 33 | |
michael@0 | 34 | window.addEventListener("message", receiveMessage, false); |
michael@0 | 35 | |
michael@0 | 36 | function run() |
michael@0 | 37 | { |
michael@0 | 38 | window.frames.kid.postMessage("from-parent", "http://mochi.test:8888"); |
michael@0 | 39 | } |
michael@0 | 40 | |
michael@0 | 41 | window.addEventListener("load", run, false); |
michael@0 | 42 | </script> |
michael@0 | 43 | </pre> |
michael@0 | 44 | </body> |
michael@0 | 45 | </html> |