Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(103)

Unified Diff: third_party/WebKit/LayoutTests/http/tests/security/suborigins/crossorigin/suborigin-cors-fetch-preflight.php

Issue 2332263002: Updated suborigin serialization to latest spec proposal (Closed)
Patch Set: Actually disable test Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/http/tests/security/suborigins/crossorigin/suborigin-cors-fetch-preflight.php
diff --git a/third_party/WebKit/LayoutTests/http/tests/security/suborigins/crossorigin/suborigin-cors-fetch-preflight.php b/third_party/WebKit/LayoutTests/http/tests/security/suborigins/crossorigin/suborigin-cors-fetch-preflight.php
index f52e71b94fccf0ca300ed6113ce1b2fe22610642..c001159a644b3309b9f5dba796b5039a829a1d74 100644
--- a/third_party/WebKit/LayoutTests/http/tests/security/suborigins/crossorigin/suborigin-cors-fetch-preflight.php
+++ b/third_party/WebKit/LayoutTests/http/tests/security/suborigins/crossorigin/suborigin-cors-fetch-preflight.php
@@ -49,13 +49,13 @@ var xorigin_preflight_script = "http://127.0.0.1:8000/security/resources/cors-sc
new SuboriginFetchTest(
false,
"Complex anonymous Fetch preflight, no AC for custom header",
- xorigin_preflight_script + "?cors=http://foobar_127.0.0.1:8000",
+ xorigin_preflight_script + "?cors=http-so://foobar.127.0.0.1:8000",
"anonymous").execute();
new SuboriginFetchTest(
true,
"Complex anonymous Fetch preflight, has AC for custom header",
- xorigin_preflight_script + "?cors=http://foobar_127.0.0.1:8000&custom=x-custom-header",
+ xorigin_preflight_script + "?cors=http-so://foobar.127.0.0.1:8000&custom=x-custom-header",
"anonymous").execute();
new SuboriginFetchTest(
@@ -73,13 +73,13 @@ new SuboriginFetchTest(
new SuboriginFetchTest(
false,
"Complex Fetch with credentials preflight, no AC for custom header",
- xorigin_preflight_script + "?cors=http://foobar_127.0.0.1:8000&credentials=true",
+ xorigin_preflight_script + "?cors=http-so://foobar.127.0.0.1:8000&credentials=true",
"use-credentials").execute();
new SuboriginFetchTest(
true,
"Complex Fetch with credentials preflight, has AC for custom header",
- xorigin_preflight_script + "?cors=http://foobar_127.0.0.1:8000&credentials=true&custom=x-custom-header",
+ xorigin_preflight_script + "?cors=http-so://foobar.127.0.0.1:8000&credentials=true&custom=x-custom-header",
"use-credentials").execute();
new SuboriginFetchTest(

Powered by Google App Engine
This is Rietveld 408576698