js/src/jit-test/tests/debug/Debugger-debuggees-09.js

Sat, 03 Jan 2015 20:18:00 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Jan 2015 20:18:00 +0100
branch
TOR_BUG_3246
changeset 7
129ffea94266
permissions
-rw-r--r--

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.

michael@0 1 // |jit-test| debug
michael@0 2 // If hasDebuggee(x) is false, removeDebuggee(x) does nothing.
michael@0 3
michael@0 4 var dbg = new Debugger;
michael@0 5
michael@0 6 function check(obj) {
michael@0 7 // If obj is something we could never debug, hasDebuggee(obj) is false.
michael@0 8 assertEq(dbg.hasDebuggee(obj), false);
michael@0 9
michael@0 10 // If hasDebuggee(x) is false, removeDebuggee(x) does nothing.
michael@0 11 assertEq(dbg.removeDebuggee(obj), undefined);
michael@0 12 }
michael@0 13
michael@0 14 // global objects which happen not to be debuggees at the moment
michael@0 15 var g1 = newGlobal('same-compartment');
michael@0 16 check(g1);
michael@0 17
michael@0 18 // objects in a compartment that is already debugging us
michael@0 19 var g2 = newGlobal();
michael@0 20 g2.parent = this;
michael@0 21 g2.eval("var dbg = new Debugger(parent);");
michael@0 22 check(g2);

mercurial