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 | <?xml version="1.0"?> |
michael@0 | 2 | <?xml-stylesheet href="chrome://global/skin" type="text/css"?> |
michael@0 | 3 | <?xml-stylesheet href="chrome://mochikit/content/tests/SimpleTest/test.css" |
michael@0 | 4 | type="text/css"?> |
michael@0 | 5 | <window title="Test nodelists from chrome" |
michael@0 | 6 | xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> |
michael@0 | 7 | <script type="application/javascript" |
michael@0 | 8 | src="chrome://mochikit/content/MochiKit/packed.js"></script> |
michael@0 | 9 | <script type="application/javascript" |
michael@0 | 10 | src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script> |
michael@0 | 11 | |
michael@0 | 12 | <!-- test results are displayed in the html:body --> |
michael@0 | 13 | <body xmlns="http://www.w3.org/1999/xhtml"> |
michael@0 | 14 | </body> |
michael@0 | 15 | |
michael@0 | 16 | <!-- test code goes here --> |
michael@0 | 17 | <script type="application/javascript"><![CDATA[ |
michael@0 | 18 | SimpleTest.waitForExplicitFinish(); |
michael@0 | 19 | |
michael@0 | 20 | function go() { |
michael@0 | 21 | var win = $('ifr').contentWindow; |
michael@0 | 22 | var list = win.document.getElementsByTagName('p'); |
michael@0 | 23 | is(list.length, 3, "can get the length"); |
michael@0 | 24 | ok(list[0].toString().indexOf("[object HTMLParagraphElement") >= 0, "can get list[0]"); |
michael@0 | 25 | is(list[0], list.item(0), "list.item works"); |
michael@0 | 26 | is(list.item, list.item, "don't recreate functions for each get"); |
michael@0 | 27 | |
michael@0 | 28 | var list2 = list[2]; |
michael@0 | 29 | ok(list[2].toString().indexOf("[object HTMLParagraphElement"), "list[2] exists"); |
michael@0 | 30 | ok("2" in list, "in operator works"); |
michael@0 | 31 | |
michael@0 | 32 | is(win.document.body.removeChild(win.document.body.lastChild), list2, "remove last paragraph element"); |
michael@0 | 33 | ok(!("2" in list), "in operator doesn't see phantom element"); |
michael@0 | 34 | is(list[2], undefined, "no node there!"); |
michael@0 | 35 | SimpleTest.finish(); |
michael@0 | 36 | } |
michael@0 | 37 | ]]></script> |
michael@0 | 38 | |
michael@0 | 39 | <iframe id="ifr" |
michael@0 | 40 | src="http://mochi.test:8888/tests/js/xpconnect/tests/mochitest/file_nodelists.html" |
michael@0 | 41 | onload="go()" /> |
michael@0 | 42 | </window> |