Sat, 03 Jan 2015 20:18:00 +0100
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 | https://bugzilla.mozilla.org/show_bug.cgi?id=504877 |
michael@0 | 5 | --> |
michael@0 | 6 | <head> |
michael@0 | 7 | <title>Test for Bug 504877</title> |
michael@0 | 8 | <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> |
michael@0 | 9 | <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/> |
michael@0 | 10 | </head> |
michael@0 | 11 | <body> |
michael@0 | 12 | <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=504877">Mozilla Bug 504877</a> |
michael@0 | 13 | <p id="display"></p> |
michael@0 | 14 | <div id="content" style="display: none"> |
michael@0 | 15 | |
michael@0 | 16 | </div> |
michael@0 | 17 | <pre id="test"> |
michael@0 | 18 | <script type="application/javascript"> |
michael@0 | 19 | |
michael@0 | 20 | /** Test for Bug 504877 **/ |
michael@0 | 21 | SimpleTest.waitForExplicitFinish(); |
michael@0 | 22 | var p = 0; |
michael@0 | 23 | function go() { |
michael@0 | 24 | var ifr = $('ifr').contentWindow; |
michael@0 | 25 | function test1() { |
michael@0 | 26 | try { |
michael@0 | 27 | ifr.foopy; |
michael@0 | 28 | ok(false, "should have thrown a cross-origin access exception"); |
michael@0 | 29 | } catch (e) { |
michael@0 | 30 | ok(/Permission denied/.test(e), "Threw a permission denied exception"); |
michael@0 | 31 | } |
michael@0 | 32 | |
michael@0 | 33 | var loc = ifr.location; |
michael@0 | 34 | (function() { |
michael@0 | 35 | netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect"); |
michael@0 | 36 | ifr.blat = 42; |
michael@0 | 37 | |
michael@0 | 38 | is(ifr.blat, 42, "able to set random properties") |
michael@0 | 39 | is(ifr.getblat(), 42, "setting properties propagates"); |
michael@0 | 40 | is(ifr.foopy, 42, "able to use UniversalXPConnect to get random properties"); |
michael@0 | 41 | |
michael@0 | 42 | loc.replace; // resolves the property onto the wrapper. |
michael@0 | 43 | })(); |
michael@0 | 44 | |
michael@0 | 45 | loc.replace("http://mochi.test:8888/"); |
michael@0 | 46 | ok(true, "able to set location on the cross origin(!) frame"); |
michael@0 | 47 | } |
michael@0 | 48 | |
michael@0 | 49 | function test2() { |
michael@0 | 50 | SimpleTest.finish(); |
michael@0 | 51 | } |
michael@0 | 52 | |
michael@0 | 53 | switch (++p) { |
michael@0 | 54 | case 1: return test1(); |
michael@0 | 55 | case 2: return test2(); |
michael@0 | 56 | } |
michael@0 | 57 | } |
michael@0 | 58 | |
michael@0 | 59 | |
michael@0 | 60 | </script> |
michael@0 | 61 | </pre> |
michael@0 | 62 | <iframe src="http://example.org/tests/js/xpconnect/tests/mochitest/bug504877_helper.html" id="ifr" onload="go()"></iframe> |
michael@0 | 63 | </body> |
michael@0 | 64 | </html> |