summaryrefslogtreecommitdiff
path: root/op_crates/fetch/lib.rs
diff options
context:
space:
mode:
authorLuca Casonato <lucacasonato@yahoo.com>2021-04-19 01:00:13 +0200
committerGitHub <noreply@github.com>2021-04-19 01:00:13 +0200
commit0552eaf569ef910b0d132b6e60758f17a4519d91 (patch)
tree6fe6ff3755487475bcef60f3ddb7c8d42432494b /op_crates/fetch/lib.rs
parent0c5ecec8f60d4f1586e56b4e6e36ca973c555830 (diff)
chore: align `Headers` to spec (#10199)
This commit aligns `Headers` to spec. It also removes the now unused 03_dom_iterable.js file. We now pass all relevant `Headers` WPT. We do not implement any sort of header filtering, as we are a server side runtime. This is likely not the most efficient implementation of `Headers` yet. It is however spec compliant. Once all the APIs in the `HTTP` hot loop are correct we can start optimizing them. It is likely that this commit reduces bench throughput temporarily.
Diffstat (limited to 'op_crates/fetch/lib.rs')
-rw-r--r--op_crates/fetch/lib.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/op_crates/fetch/lib.rs b/op_crates/fetch/lib.rs
index 9eeda059a..030f8a809 100644
--- a/op_crates/fetch/lib.rs
+++ b/op_crates/fetch/lib.rs
@@ -59,10 +59,6 @@ pub fn init(isolate: &mut JsRuntime) {
include_str!("01_fetch_util.js"),
),
(
- "deno:op_crates/fetch/03_dom_iterable.js",
- include_str!("03_dom_iterable.js"),
- ),
- (
"deno:op_crates/fetch/11_streams.js",
include_str!("11_streams.js"),
),