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 // |jit-test| error: ReferenceError
3 function ygTreeView(id) {};
4 function ygNode() {}
5 ygNode.prototype.init = function () {
6 this.children = [];
7 }
8 ygTextNode.prototype = new ygNode;
9 function ygTextNode() {
10 this.init(it.next.bind(it), StopIteration)
11 }
12 userTree = new ygTreeView("userTree")
13 addMenuNode(userTree)
14 function addMenuNode(tree) {
15 new ygTextNode({}, tree.root, false)
16 }