xpcshell_debugging_script.js (361B)
1 dump("hello from the debugee!\n"); 2 // We should hit the above dump as we set a breakpoint on the first line 3 4 /* Any copyright is dedicated to the Public Domain. 5 http://creativecommons.org/publicdomain/zero/1.0/ */ 6 7 // This is a file that test_xpcshell_debugging.js debugs. 8 9 debugger; // and why not check we hit this!? 10 11 dump("try to set a breakpoint here");