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 <!DOCTYPE html>
2 <html class="reftest-wait">
3 <head>
4 <script>
6 function doTest()
7 {
8 var r = document.documentElement;
9 while(r.firstChild) { r.removeChild(r.firstChild); }
10 var body = document.createElementNS("http://www.w3.org/1999/xhtml", "body");
11 r.appendChild(body);
12 body.contentEditable = "true";
13 document.execCommand("inserthtml", false, "<span style=\"position:relative;left:0.8px\">a<select></select>a</span>");
15 document.documentElement.removeAttribute("class");
16 }
18 document.addEventListener("MozReftestInvalidate", doTest, false);
19 </script>
20 </head>
22 <body></body>
23 </html>