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
50
devtools/server/tests/unit/test_interrupt.js
Normal file
50
devtools/server/tests/unit/test_interrupt.js
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
/* Any copyright is dedicated to the Public Domain.
|
||||
http://creativecommons.org/publicdomain/zero/1.0/ */
|
||||
|
||||
var gClient;
|
||||
var gDebuggee;
|
||||
|
||||
function run_test()
|
||||
{
|
||||
initTestDebuggerServer();
|
||||
gDebuggee = testGlobal("test-1");
|
||||
DebuggerServer.addTestGlobal(gDebuggee);
|
||||
|
||||
let transport = DebuggerServer.connectPipe();
|
||||
gClient = new DebuggerClient(transport);
|
||||
gClient.connect().then(function (aType, aTraits) {
|
||||
attachTestTab(gClient, "test-1", test_attach);
|
||||
});
|
||||
do_test_pending();
|
||||
}
|
||||
|
||||
function test_attach(aResponse, aTabClient)
|
||||
{
|
||||
aTabClient.attachThread({}, function (aResponse, aThreadClient) {
|
||||
do_check_eq(aThreadClient.paused, true);
|
||||
aThreadClient.resume(function () {
|
||||
test_interrupt(aThreadClient);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function test_interrupt(aThreadClient)
|
||||
{
|
||||
do_check_eq(aThreadClient.paused, false);
|
||||
aThreadClient.interrupt(function (aResponse) {
|
||||
do_check_eq(aThreadClient.paused, true);
|
||||
aThreadClient.resume(function () {
|
||||
do_check_eq(aThreadClient.paused, false);
|
||||
cleanup();
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function cleanup()
|
||||
{
|
||||
gClient.addListener("closed", function (aEvent) {
|
||||
do_test_finished();
|
||||
});
|
||||
gClient.close();
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue