From 2c4b268a454890b61edd0a71bc4257857ba2ab08 Mon Sep 17 00:00:00 2001 From: Jeena Lee Date: Tue, 23 Aug 2016 15:49:03 -0700 Subject: [PATCH] Remove TODO from step 4 of `delete` The confusion around step 4 of `delete` method has been resolved through https://github.com/whatwg/fetch/issues/372. --- components/script/dom/headers.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/components/script/dom/headers.rs b/components/script/dom/headers.rs index 6fa4e0249c8..70908fb4dfb 100644 --- a/components/script/dom/headers.rs +++ b/components/script/dom/headers.rs @@ -105,8 +105,6 @@ impl HeadersMethods for Headers { return Ok(()); } // Step 4 - // TODO: Requires clarification from the Fetch spec: - // ... https://github.com/whatwg/fetch/issues/372 if self.guard.get() == Guard::RequestNoCors && !is_cors_safelisted_request_header(&valid_name, &b"invalid".to_vec()) { return Ok(());