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=450191 |
michael@0 | 5 | --> |
michael@0 | 6 | <head> |
michael@0 | 7 | <title>Test for Bug 450191</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 onload="run()"> |
michael@0 | 12 | <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=450191">Mozilla Bug 450191</a> |
michael@0 | 13 | <iframe id="display" src="about:blank"></iframe> |
michael@0 | 14 | <pre id="test"> |
michael@0 | 15 | <script type="application/javascript"> |
michael@0 | 16 | |
michael@0 | 17 | /** Test for Bug 450191 **/ |
michael@0 | 18 | |
michael@0 | 19 | SimpleTest.waitForExplicitFinish(); |
michael@0 | 20 | |
michael@0 | 21 | function run() { |
michael@0 | 22 | var iframe = document.getElementById("display"); |
michael@0 | 23 | var subdoc = iframe.contentDocument; |
michael@0 | 24 | var subwin = iframe.contentWindow; |
michael@0 | 25 | |
michael@0 | 26 | var doctext = "<div style='font-size: 2em'>div text <table><tr><td id='t'>table text</td></tr></table></div>"; |
michael@0 | 27 | |
michael@0 | 28 | function subdoc_body_font() { |
michael@0 | 29 | return subwin.getComputedStyle(subdoc.body, "").fontSize; |
michael@0 | 30 | } |
michael@0 | 31 | |
michael@0 | 32 | function subdoc_cell_font() { |
michael@0 | 33 | return subwin.getComputedStyle(subdoc.getElementById("t"), "").fontSize; |
michael@0 | 34 | } |
michael@0 | 35 | |
michael@0 | 36 | subdoc.open(); |
michael@0 | 37 | subdoc.write(doctext); |
michael@0 | 38 | subdoc.close(); |
michael@0 | 39 | |
michael@0 | 40 | is(subdoc_cell_font(), subdoc_body_font(), |
michael@0 | 41 | "Quirks style sheet should be applied."); |
michael@0 | 42 | |
michael@0 | 43 | subdoc.open(); |
michael@0 | 44 | subdoc.write("<!DOCTYPE HTML>" + doctext); |
michael@0 | 45 | subdoc.close(); |
michael@0 | 46 | |
michael@0 | 47 | isnot(subdoc_cell_font(), subdoc_body_font(), |
michael@0 | 48 | "Quirks style sheet should NOT be applied."); |
michael@0 | 49 | |
michael@0 | 50 | subdoc.open(); |
michael@0 | 51 | subdoc.write(doctext); |
michael@0 | 52 | subdoc.close(); |
michael@0 | 53 | |
michael@0 | 54 | is(subdoc_cell_font(), subdoc_body_font(), |
michael@0 | 55 | "Quirks style sheet should be applied."); |
michael@0 | 56 | |
michael@0 | 57 | SimpleTest.finish(); |
michael@0 | 58 | } |
michael@0 | 59 | |
michael@0 | 60 | |
michael@0 | 61 | </script> |
michael@0 | 62 | </pre> |
michael@0 | 63 | </body> |
michael@0 | 64 | </html> |