Index: third_party/WebKit/LayoutTests/http/tests/cookies/same-site/popup-cross-site-post.html |
diff --git a/third_party/WebKit/LayoutTests/http/tests/cookies/same-site/popup-cross-site-post.html b/third_party/WebKit/LayoutTests/http/tests/cookies/same-site/popup-cross-site-post.html |
index 97fddfad88e613274e3440c6fe1db34f91e42905..ec32a8947c3e644eb80c6a169c8822996ce7d433 100644 |
--- a/third_party/WebKit/LayoutTests/http/tests/cookies/same-site/popup-cross-site-post.html |
+++ b/third_party/WebKit/LayoutTests/http/tests/cookies/same-site/popup-cross-site-post.html |
@@ -5,7 +5,9 @@ |
<script> |
// Set cookies on ORIGINAL_HOST, then move ourselves to TEST_ROOT so |
// we can verify 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=/"; |