From 9d6d1c66b894d37e902cef094659898c1362f5e8 Mon Sep 17 00:00:00 2001 From: Eitan Mosenkis Date: Tue, 8 Dec 2015 23:05:56 +0200 Subject: [PATCH] Replace tabs with spaces. --- components/script/cors.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/script/cors.rs b/components/script/cors.rs index 21c3d3b38a7..f60dc3a7c78 100644 --- a/components/script/cors.rs +++ b/components/script/cors.rs @@ -74,8 +74,8 @@ impl CORSRequest { match &*destination.scheme { // As per (https://fetch.spec.whatwg.org/#main-fetch 5.1.9), about URLs can be fetched // the same as a basic request. - // TODO: (security-sensitive) restrict the available pages to about:blank and - // about:unicorn (See https://fetch.spec.whatwg.org/#concept-basic-fetch). + // TODO: (security-sensitive) restrict the available pages to about:blank and + // about:unicorn (See https://fetch.spec.whatwg.org/#concept-basic-fetch). "about" => Ok(None), // As per (https://fetch.spec.whatwg.org/#main-fetch 5.1.9), data URLs can be fetched // the same as a basic request if the request's same-origin data-URL flag is set.