blob: 9529d2f324ae9da25527d6270ca54aae20bcb358 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
/**
* Verify that two pauses in a row will keep the same frame actor.
*/
add_task(
threadFrontTest(async ({ threadFront, debuggee }) => {
const packet1 = await executeOnNextTickAndWaitForPause(
() => evalCode(debuggee),
threadFront
);
const packet2 = await resumeAndWaitForPause(threadFront);
Assert.equal(packet1.frame.actor, packet2.frame.actor);
await threadFront.resume();
})
);
function evalCode(debuggee) {
debuggee.eval(
"(" +
function () {
function stopMe() {
debugger;
debugger;
}
stopMe();
} +
")()"
);
}
|