diff options
author | Luca Casonato <lucacasonato@yahoo.com> | 2021-04-20 14:47:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-20 14:47:22 +0200 |
commit | 9e6cd91014ac4a0d34556b0d09cbe25e4e0930c6 (patch) | |
tree | 4523790510a17676c987039feb03f208a258dc16 /runtime/js/99_main.js | |
parent | 115197ffb06aad2a3045e8478980ab911b5a5eeb (diff) |
chore: align fetch to spec (#10203)
This commit aligns the `fetch` API and the `Request` / `Response`
classes belonging to it to the spec. This commit enables all the
relevant `fetch` WPT tests. Spec compliance is now at around 90%.
Performance is essentially identical now (within 1% of 1.9.0).
Diffstat (limited to 'runtime/js/99_main.js')
-rw-r--r-- | runtime/js/99_main.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/runtime/js/99_main.js b/runtime/js/99_main.js index dd7e3793c..7742e2ba2 100644 --- a/runtime/js/99_main.js +++ b/runtime/js/99_main.js @@ -421,7 +421,6 @@ delete Object.prototype.__proto__; if (locationHref != null) { location.setLocationHref(locationHref); - fetch.setBaseUrl(locationHref); } registerErrors(); @@ -488,7 +487,6 @@ delete Object.prototype.__proto__; runtimeOptions; location.setLocationHref(locationHref); - fetch.setBaseUrl(locationHref); registerErrors(); const internalSymbol = Symbol("Deno.internal"); |