mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-06 07:48:38 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
53
devtools/server/tests/unit/test_frameclient-01.js
Normal file
53
devtools/server/tests/unit/test_frameclient-01.js
Normal file
|
|
@ -0,0 +1,53 @@
|
|||
/* Any copyright is dedicated to the Public Domain.
|
||||
http://creativecommons.org/publicdomain/zero/1.0/ */
|
||||
|
||||
var gDebuggee;
|
||||
var gClient;
|
||||
var gThreadClient;
|
||||
|
||||
function run_test()
|
||||
{
|
||||
initTestDebuggerServer();
|
||||
gDebuggee = addTestGlobal("test-stack");
|
||||
gClient = new DebuggerClient(DebuggerServer.connectPipe());
|
||||
gClient.connect().then(function () {
|
||||
attachTestTabAndResume(gClient, "test-stack", function (aResponse, aTabClient, aThreadClient) {
|
||||
gThreadClient = aThreadClient;
|
||||
test_pause_frame();
|
||||
});
|
||||
});
|
||||
do_test_pending();
|
||||
}
|
||||
|
||||
function test_pause_frame()
|
||||
{
|
||||
gThreadClient.addOneTimeListener("paused", function (aEvent, aPacket) {
|
||||
gThreadClient.addOneTimeListener("framesadded", function () {
|
||||
do_check_eq(gThreadClient.cachedFrames.length, 3);
|
||||
do_check_true(gThreadClient.moreFrames);
|
||||
do_check_false(gThreadClient.fillFrames(3));
|
||||
|
||||
do_check_true(gThreadClient.fillFrames(30));
|
||||
gThreadClient.addOneTimeListener("framesadded", function () {
|
||||
do_check_false(gThreadClient.moreFrames);
|
||||
do_check_eq(gThreadClient.cachedFrames.length, 7);
|
||||
gThreadClient.resume(function () {
|
||||
finishClient(gClient);
|
||||
});
|
||||
});
|
||||
});
|
||||
do_check_true(gThreadClient.fillFrames(3));
|
||||
});
|
||||
|
||||
gDebuggee.eval("(" + function () {
|
||||
var recurseLeft = 5;
|
||||
function recurse() {
|
||||
if (--recurseLeft == 0) {
|
||||
debugger;
|
||||
return;
|
||||
}
|
||||
recurse();
|
||||
}
|
||||
recurse();
|
||||
} + ")()");
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue