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.
1 <html xmlns="http://www.w3.org/1999/xhtml"
2 xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
3 class="reftest-wait">
5 <head>
6 <script>
8 function boom()
9 {
10 var quote = document.getElementById("quote");
11 var para = document.getElementById("para");
12 var dialog = document.getElementById("dialog");
13 var e = document.getElementById("e");
15 dialog.appendChild(quote);
16 e.insertBefore(quote, para);
18 document.documentElement.removeAttribute("class");
19 }
21 </script>
22 </head>
24 <body onload="setTimeout(boom, 30)">
26 <p>He said <q id="quote">J<xul:hbox/></q></p>
28 <xul:dialog id="dialog"/>
30 <div id="e"><p id="para">Foopy</p></div>
32 </body>
33 </html>