toolkit/devtools/server/tests/unit/test_nativewrappers.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 function run_test()
michael@0 2 {
michael@0 3 Components.utils.import("resource://gre/modules/jsdebugger.jsm");
michael@0 4 addDebuggerToGlobal(this);
michael@0 5 var g = testGlobal("test1");
michael@0 6
michael@0 7 var dbg = new Debugger();
michael@0 8 dbg.addDebuggee(g);
michael@0 9 dbg.onDebuggerStatement = function(aFrame) {
michael@0 10 let args = aFrame.arguments;
michael@0 11 try {
michael@0 12 args[0];
michael@0 13 do_check_true(true);
michael@0 14 } catch(ex) {
michael@0 15 do_check_true(false);
michael@0 16 }
michael@0 17 };
michael@0 18
michael@0 19 g.eval("function stopMe(arg) {debugger;}");
michael@0 20
michael@0 21 g2 = testGlobal("test2");
michael@0 22 g2.g = g;
michael@0 23 g2.eval("(" + function createBadEvent() {
michael@0 24 let parser = Components.classes["@mozilla.org/xmlextras/domparser;1"].createInstance(Components.interfaces.nsIDOMParser);
michael@0 25 let doc = parser.parseFromString("<foo></foo>", "text/xml");
michael@0 26 g.stopMe(doc.createEvent("MouseEvent"));
michael@0 27 } + ")()");
michael@0 28
michael@0 29 dbg.enabled = false;
michael@0 30 }

mercurial