Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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 | } |