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.
1 /* Any copyright is dedicated to the Public Domain.
2 http://creativecommons.org/publicdomain/zero/1.0/ */
4 var gDebuggee;
5 var gClient;
6 var gThreadClient;
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 }
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 });
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 }