Index: third_party/WebKit/LayoutTests/http/tests/cookies/same-site/basics.html |
diff --git a/third_party/WebKit/LayoutTests/http/tests/cookies/same-site/basics.html b/third_party/WebKit/LayoutTests/http/tests/cookies/same-site/basics.html |
index e2b072782c7fb55e143ccc3b6b36358877870e8d..42ac828dcb349bd5559245f4968597163fddf307 100644 |
--- a/third_party/WebKit/LayoutTests/http/tests/cookies/same-site/basics.html |
+++ b/third_party/WebKit/LayoutTests/http/tests/cookies/same-site/basics.html |
@@ -5,7 +5,9 @@ |
<script> |
// Set cookies on ORIGINAL_HOST, then move ourselves to TEST_ROOT so |
// we can verify registrable domain and cross-origin behavior. |
-if (window.location.hostname == ORIGINAL_HOST) { |
+if (window.location.hostname == "127.0.0.1") { |
+ window.location.hostname = ORIGINAL_HOST; |
+} else if (window.location.hostname == ORIGINAL_HOST) { |
clearKnownCookies(); |
document.cookie = STRICT_DOM + "=1; SameSite=Strict; Max-Age=100; path=/"; |
document.cookie = LAX_DOM + "=1; SameSite=Lax; Max-Age=100; path=/"; |