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 // Binary: cache/js-dbg-64-1210706b4576-linux
2 // Flags:
3 //
5 this.__proto__ = null;
6 Object.prototype.__proto__ = this;
7 function exploreProperties(obj) {
8 var props = [];
9 for (var o = obj; o; o = Object.getPrototypeOf(o)) {
10 props = props.concat(Object.getOwnPropertyNames(o));
11 }
12 for (var i = 0; i < props.length; ++i) {
13 var p = props[i];
14 var v = obj[p];
15 }
16 }
17 var c = [{}];
18 exploreProperties(c);