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 <head>
3 <script type="text/javascript">
5 function boom()
6 {
7 var div1 = document.createElement("div");
8 div1.style.counterIncrement = "chicken";
9 div1.contentEditable = "true";
11 var div2 = document.createElement("div");
12 div2.style.counterIncrement = "chicken";
14 document.body.style.content = "'A'";
16 div1.appendChild(div2);
17 document.body.appendChild(div1);
18 div1.removeChild(div2);
19 }
21 </script>
23 </head>
25 <body onload="boom();">
27 </body>
28 </html>