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 // evalInGlobal correctly handles optional lineNumber option
2 var g = newGlobal();
3 var dbg = new Debugger(g);
4 var debuggee = dbg.getDebuggees()[0];
5 var count = 0;
7 function testLineNumber (options, expected) {
8 count++;
9 dbg.onNewScript = function(script){
10 dbg.onNewScript = undefined;
11 assertEq(script.startLine, expected);
12 count--;
13 };
14 debuggee.evalInGlobal("", options);
15 }
18 testLineNumber(undefined, 1);
19 testLineNumber({}, 1);
20 testLineNumber({ lineNumber: undefined }, 1);
21 testLineNumber({ lineNumber: 5 }, 5);
22 assertEq(count, 0);