summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/microtasks/resources/evaluation-order-4.1.mjs
blob: f3347c1d28eac466c6d6ec67c60b9f1261b08b38 (plain)
1
2
3
4
5
6
7
8
log.push("step-4.1-1");
queueMicrotask(() => log.push("microtask-4.1"));
log.push("step-4.1-2");

await import("./evaluation-order-4.2.mjs");

// Not happening as we throw in the above module.
log.push("step-4.1-3");