diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2022-08-21 19:16:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-21 20:16:42 +0200 |
commit | 97954003cc87b664768918173e8d00f6df35e04f (patch) | |
tree | dcad94ac57503ba56e8cd14847cc60b1c2ddc91c /tools | |
parent | e96933bc163fd81a276cbc169b17f76724a5ac33 (diff) |
feat: `queueMicrotask()` error handling (#15522)
Adds error event dispatching for queueMicrotask(). Consequently unhandled errors are now reported with Deno.core.terminate(), which is immune to the existing quirk with plainly thrown errors (#14158).
Diffstat (limited to 'tools')
-rw-r--r-- | tools/wpt/expectation.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/wpt/expectation.json b/tools/wpt/expectation.json index 813abbbba..39fe59515 100644 --- a/tools/wpt/expectation.json +++ b/tools/wpt/expectation.json @@ -3615,7 +3615,7 @@ "type-long-settimeout.any.worker.html": true }, "microtask-queuing": { - "queue-microtask-exceptions.any.html": false, + "queue-microtask-exceptions.any.html": true, "queue-microtask.any.html": true, "queue-microtask.any.worker.html": true }, @@ -4610,4 +4610,4 @@ "idlharness.https.any.worker.html": true, "idlharness-shadowrealm.window.html": false } -}
\ No newline at end of file +} |