forked from WebKit/WebKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathperformance-observer-callback-task.html
48 lines (41 loc) · 1.16 KB
/
performance-observer-callback-task.html
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
42
43
44
45
46
47
48
<!DOCTYPE HTML>
<html>
<head>
<script src="../resources/js-test-pre.js"></script>
</head>
<body>
<script>
description("Test PerformanceObserver callback is a task, not a microtask.");
window.jsTestIsAsync = true;
window.microtaskExecuted = false;
window.callbackCount = 0;
window.list = null;
let observer = new PerformanceObserver((list) => {
window.list = list;
callbackCount++;
testPassed("PerformanceObserver callback fired");
if (callbackCount === 1) {
shouldBeFalse(`microtaskExecuted`);
shouldBe(`list.getEntries().length`, `1`);
performance.mark("mark2");
Promise.resolve().then(() => {
testPassed("Promise microtask fired");
microtaskExecuted = true;
performance.mark("mark3");
});
return;
}
if (callbackCount === 2) {
shouldBe(`list.getEntries().length`, `2`);
shouldBeTrue(`microtaskExecuted`);
finishJSTest();
return;
}
testFailed("Callback should not have fired again");
});
observer.observe({entryTypes: ["mark"]});
performance.mark("mark1");
</script>
<script src="../resources/js-test-post.js"></script>
</body>
</html>