diff options
| author | Andreu Botella <abb@randomunok.com> | 2021-10-27 06:09:58 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-27 15:09:58 +0200 |
| commit | 09dd77c13edf59eb3748b5f21bd8b7141d822f61 (patch) | |
| tree | ca7e61d2f77d8670901de7aa00871ca381401b12 /tools/wpt | |
| parent | b44b26c8842522e0e952c31aeb42c7fb85a5c7a7 (diff) | |
fix(workers): Make `importScripts()` use the same HTTP client as `fetch` (#12540)
The initial implementation of `importScripts()` in #11338 used
`reqwest`'s default client to fetch HTTP scripts, which meant it would
not use certificates or other fetching configuration passed by command
line flags. This change fixes it.
Diffstat (limited to 'tools/wpt')
| -rw-r--r-- | tools/wpt/expectation.json | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/wpt/expectation.json b/tools/wpt/expectation.json index 288d91bcc..6bcaf576f 100644 --- a/tools/wpt/expectation.json +++ b/tools/wpt/expectation.json @@ -9070,9 +9070,7 @@ ], "catch.sub.any.worker.html": [ "Cross-origin syntax error", - "Cross-origin throw", - "Redirect-to-cross-origin syntax error", - "Redirect-to-Cross-origin throw" + "Cross-origin throw" ], "report-error-cross-origin.sub.any.worker.html": false, "report-error-redirect-to-cross-origin.sub.any.worker.html": false, |
