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 // Owning elements and attribute names are attached to scripts compiled
2 // off-thread.
4 var g = newGlobal();
5 var dbg = new Debugger;
6 var gDO = dbg.addDebuggee(g);
8 var elt = new g.Object;
9 var eltDO = gDO.makeDebuggeeValue(elt);
11 var log = '';
12 dbg.onDebuggerStatement = function (frame) {
13 log += 'd';
14 var source = frame.script.source;
15 assertEq(source.element, eltDO);
16 assertEq(source.elementAttributeName, 'mass');
17 };
19 g.offThreadCompileScript('debugger;',
20 { element: elt,
21 elementAttributeName: 'mass' });
22 log += 'o';
23 g.runOffThreadScript();
24 assertEq(log, 'od');