diff options
author | Luca Casonato <hello@lcas.dev> | 2021-08-18 15:19:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-18 15:19:22 +0200 |
commit | a66218d457859fc3498db9fbc61228c74f490cc2 (patch) | |
tree | cf099a0d7cfaeb5e6c10d55473bfc0b4ceb9c8d9 /tools | |
parent | 480cfda8d5a5560fe0cc3ac2d9a3b798bf23f060 (diff) |
fix(runtime): event loop panics in classic workers (#11756)
Classic worker scripts are now executed in the context of a Tokio
runtime. This does mean we can not spawn more tokio runtimes in
"op_worker_sync_fetch". We instead spawn a new thread there, that can
create a new Tokio runtime that we can use to block the worker thread.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/wpt/expectation.json | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/tools/wpt/expectation.json b/tools/wpt/expectation.json index 6e0cec2b0..5d1ffa446 100644 --- a/tools/wpt/expectation.json +++ b/tools/wpt/expectation.json @@ -16744,13 +16744,7 @@ "Cross-origin throw", "Redirect-to-cross-origin syntax error", "Redirect-to-Cross-origin throw" - ], - "report-error-cross-origin.sub.any.worker.html": false, - "report-error-redirect-to-cross-origin.sub.any.worker.html": false, - "report-error-same-origin.sub.any.worker.html": false, - "report-error-setTimeout-cross-origin.sub.any.worker.html": false, - "report-error-setTimeout-redirect-to-cross-origin.sub.any.worker.html": false, - "report-error-setTimeout-same-origin.sub.any.worker.html": false + ] } } }, |