Thu, 15 Jan 2015 21:03:48 +0100
Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)
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 }