Tue, 06 Jan 2015 21:39:09 +0100
Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.
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 | } |