|
1 /* Any copyright is dedicated to the Public Domain. |
|
2 http://creativecommons.org/publicdomain/zero/1.0/ */ |
|
3 |
|
4 var gDebuggee; |
|
5 var gClient; |
|
6 var gThreadClient; |
|
7 |
|
8 function run_test() |
|
9 { |
|
10 initTestDebuggerServer(); |
|
11 gDebuggee = addTestGlobal("test-stack"); |
|
12 gClient = new DebuggerClient(DebuggerServer.connectPipe()); |
|
13 gClient.connect(function() { |
|
14 attachTestTabAndResume(gClient, "test-stack", function(aResponse, aTabClient, aThreadClient) { |
|
15 gThreadClient = aThreadClient; |
|
16 test_pause_frame(); |
|
17 }); |
|
18 }); |
|
19 do_test_pending(); |
|
20 } |
|
21 |
|
22 function test_pause_frame() |
|
23 { |
|
24 gThreadClient.addOneTimeListener("paused", function(aEvent, aPacket) { |
|
25 // Ask for exactly the number of frames we expect. |
|
26 gThreadClient.addOneTimeListener("framesadded", function() { |
|
27 do_check_false(gThreadClient.moreFrames); |
|
28 gThreadClient.resume(function() { |
|
29 finishClient(gClient); |
|
30 }); |
|
31 }); |
|
32 do_check_true(gThreadClient.fillFrames(3)); |
|
33 }); |
|
34 |
|
35 gDebuggee.eval("(" + function() { |
|
36 var recurseLeft = 1; |
|
37 function recurse() { |
|
38 if (--recurseLeft == 0) { |
|
39 debugger; |
|
40 return; |
|
41 } |
|
42 recurse(); |
|
43 }; |
|
44 recurse(); |
|
45 } + ")()"); |
|
46 } |