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=290397 |
michael@0 | 5 | --> |
michael@0 | 6 | <head> |
michael@0 | 7 | <title>Test for Bug 290397</title> |
michael@0 | 8 | <script src="/tests/SimpleTest/SimpleTest.js"></script> |
michael@0 | 9 | <script src="/tests/SimpleTest/EventUtils.js"></script> |
michael@0 | 10 | <link rel="stylesheet" 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=290397">Mozilla Bug 290397</a> |
michael@0 | 14 | <p id="display"> |
michael@0 | 15 | <map name=a> |
michael@0 | 16 | <area coords=0,0,20,20 href=#pass> |
michael@0 | 17 | <area shape=default href=#fail> |
michael@0 | 18 | </map> |
michael@0 | 19 | <img src=file_Dolske.png usemap=#a id=image> |
michael@0 | 20 | </p> |
michael@0 | 21 | <div id="content" style="display: none"> |
michael@0 | 22 | |
michael@0 | 23 | </div> |
michael@0 | 24 | <pre id="test"> |
michael@0 | 25 | <script> |
michael@0 | 26 | /** Test for Bug 290397 **/ |
michael@0 | 27 | SimpleTest.waitForExplicitFinish(); |
michael@0 | 28 | onhashchange = function() { |
michael@0 | 29 | is(location.hash, "#pass", "Got the wrong area"); |
michael@0 | 30 | SimpleTest.finish(); |
michael@0 | 31 | }; |
michael@0 | 32 | function runTest() { |
michael@0 | 33 | var image = document.getElementById("image"); |
michael@0 | 34 | SimpleTest.waitForFocus(function() synthesizeMouse(image, 10, 10, {})); |
michael@0 | 35 | } |
michael@0 | 36 | addLoadEvent(runTest); |
michael@0 | 37 | </script> |
michael@0 | 38 | </pre> |
michael@0 | 39 | </body> |
michael@0 | 40 | </html> |