blob: 213a827b1990572fb7c1c2dafecef6b6af7d551d (
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
|
"use strict";
var self = this;
self.onmessage = function(event) {
if (event.data !== "resolve") {
return;
}
// This then-handler should be executed inside the top-level event loop,
// within the context of the debugger's global.
Promise.resolve().then(function() {
var dbg = new Debugger(global);
dbg.onDebuggerStatement = function() {
self.onmessage = function(e) {
if (e.data !== "resume") {
return;
}
// This then-handler should be executed inside the nested event loop,
// within the context of the debugger's global.
Promise.resolve().then(function() {
postMessage("resumed");
leaveEventLoop();
});
};
// Test bug 1392540 where DOM Promises from debugger principal
// where frozen while hitting a worker breakpoint.
Promise.resolve().then(() => {
postMessage("paused");
});
enterEventLoop();
};
postMessage("resolved");
});
};
|