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>
3 <head>
4 <meta charset="UTF-8">
5 <script>
6 HTMLElement.prototype.__proto__ = Proxy.create({}, {});
7 try {
8 window.Image;
9 } finally {
10 // Restore our prototype so the test harnesses can deal with us
11 // We can't just assign to __proto__ because it lives on our proto chain
12 // and we messed that up.
13 var desc = Object.getOwnPropertyDescriptor(Object.prototype, "__proto__");
14 desc.set.call(HTMLElement.prototype, Element.prototype);
15 }
16 </script>
17 </head>
19 <body></body>
20 </html>