summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/microtasks/resources/evaluation-order-1-throw.js
blob: 2451df1c15514f7e2c9115d2e9a5894b8d30ad70 (plain)
1
2
3
4
queueMicrotask(() => globalThis.log.push("microtask"));
globalThis.log.push("body");

throw new Error("error");