blob: 19bdc715b9b71d7424f84b3229c9129aa0cb5c75 (
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
37
38
39
40
41
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
/* eslint-disable no-shadow */
"use strict";
/**
* Verify that a frame actor is properly expired when the frame goes away.
*/
add_task(
threadFrontTest(async ({ threadFront, debuggee }) => {
const packet1 = await executeOnNextTickAndWaitForPause(
() => evalCode(debuggee),
threadFront
);
threadFront.resume();
const packet2 = await waitForPause(threadFront);
const poppedFrames = packet2.poppedFrames;
Assert.equal(typeof poppedFrames, typeof []);
Assert.ok(poppedFrames.includes(packet1.frame.actorID));
threadFront.resume();
})
);
function evalCode(debuggee) {
debuggee.eval(
"(" +
function() {
function stopMe() {
debugger;
}
stopMe();
debugger;
} +
")()"
);
}
|