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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/security/suborigins/crossorigin/suborigin-cors-xhr-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-xhr-preflight.php
diff --git a/third_party/WebKit/LayoutTests/http/tests/security/suborigins/crossorigin/suborigin-cors-xhr-preflight.php b/third_party/WebKit/LayoutTests/http/tests/security/suborigins/crossorigin/suborigin-cors-xhr-preflight.php
index d7f6985ef08667e98e589422124b4797f9fd274b..f1d6e80aa9c73b70cbc99db5f8dbc035d6f2ca2b 100644
--- a/third_party/WebKit/LayoutTests/http/tests/security/suborigins/crossorigin/suborigin-cors-xhr-preflight.php
+++ b/third_party/WebKit/LayoutTests/http/tests/security/suborigins/crossorigin/suborigin-cors-xhr-preflight.php
@@ -55,13 +55,13 @@ var xorigin_preflight_script = "http://127.0.0.1:8000/security/resources/cors-sc
new SuboriginXHRTest(
false,
"Complex anonymous XHR 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 SuboriginXHRTest(
true,
"Complex anonymous XHR 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 SuboriginXHRTest(
@@ -79,13 +79,13 @@ new SuboriginXHRTest(
new SuboriginXHRTest(
false,
"Complex XHR 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 SuboriginXHRTest(
true,
"Complex XHR 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 SuboriginXHRTest(

Powered by Google App Engine
This is Rietveld 408576698