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:Error
3 // Binary: cache/js-dbg-64-48e43edc8834-linux
4 // Flags:
5 //
7 function f() {
8 frame = dbg.getNewestFrame();
9 }
10 var g = newGlobal();
11 g.f = function (a, b) { return a + "/" + this . f( ) ; };
12 var dbg = Debugger(g);
13 dbg.onDebuggerStatement = function (frame) {
14 var f = frame.eval("f").return;
15 assertEq(f.call(null, "a", "b").return, "a/b");
16 };
17 g.eval("debugger;");