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

throw new Error("error");