| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <script src="/resources/testharness.js"></script> | 2 <script src="/resources/testharness.js"></script> |
| 3 <script src="/resources/testharnessreport.js"></script> | 3 <script src="/resources/testharnessreport.js"></script> |
| 4 <script src="/cookies/resources/testharness-helpers.js"></script> | 4 <script src="/cookies/resources/testharness-helpers.js"></script> |
| 5 <script> | 5 <script> |
| 6 // Set cookies on ORIGINAL_HOST, then move ourselves to TEST_ROOT so | 6 // Set cookies on ORIGINAL_HOST, then move ourselves to TEST_ROOT so |
| 7 // we can verify cross-origin behavior. | 7 // we can verify cross-origin behavior. |
| 8 if (window.location.hostname == ORIGINAL_HOST) { | 8 if (window.location.hostname == "127.0.0.1") { |
| 9 window.location.hostname = ORIGINAL_HOST; |
| 10 } else if (window.location.hostname == ORIGINAL_HOST) { |
| 9 clearKnownCookies(); | 11 clearKnownCookies(); |
| 10 document.cookie = STRICT_DOM + "=1; SameSite=Strict; Max-Age=100; path=/"; | 12 document.cookie = STRICT_DOM + "=1; SameSite=Strict; Max-Age=100; path=/"; |
| 11 document.cookie = LAX_DOM + "=1; SameSite=Lax; Max-Age=100; path=/"; | 13 document.cookie = LAX_DOM + "=1; SameSite=Lax; Max-Age=100; path=/"; |
| 12 document.cookie = NORMAL_DOM + "=1; Max-Age=100; path=/"; | 14 document.cookie = NORMAL_DOM + "=1; Max-Age=100; path=/"; |
| 13 window.location.hostname = TEST_HOST; | 15 window.location.hostname = TEST_HOST; |
| 14 } else { | 16 } else { |
| 15 async_test(t => { | 17 async_test(t => { |
| 16 var i = window.open("http://" + ORIGINAL_HOST + ":8000/cookies/resources
/post-cookies-to-opener.php"); | 18 var i = window.open("http://" + ORIGINAL_HOST + ":8000/cookies/resources
/post-cookies-to-opener.php"); |
| 17 window.addEventListener("message", t.step_func_done(e => { | 19 window.addEventListener("message", t.step_func_done(e => { |
| 18 assert_equals(e.data.http[STRICT_DOM], undefined, "strict"); | 20 assert_equals(e.data.http[STRICT_DOM], undefined, "strict"); |
| 19 assert_equals(e.data.http[LAX_DOM], "1", "lax"); | 21 assert_equals(e.data.http[LAX_DOM], "1", "lax"); |
| 20 assert_equals(e.data.http[NORMAL_DOM], "1", "normal"); | 22 assert_equals(e.data.http[NORMAL_DOM], "1", "normal"); |
| 21 // TODO(mkwst): This should exclude the strict cookie. | 23 // TODO(mkwst): This should exclude the strict cookie. |
| 22 assert_equals(e.data.document, STRICT_DOM + "=1; " + LAX_DOM + "=1;
" + NORMAL_DOM + "=1"); | 24 assert_equals(e.data.document, STRICT_DOM + "=1; " + LAX_DOM + "=1;
" + NORMAL_DOM + "=1"); |
| 23 })); | 25 })); |
| 24 }, "'" + ORIGINAL_HOST + "' is not same-site with '" + TEST_HOST + "', so st
rict samesite cookies are not sent."); | 26 }, "'" + ORIGINAL_HOST + "' is not same-site with '" + TEST_HOST + "', so st
rict samesite cookies are not sent."); |
| 25 } | 27 } |
| 26 </script> | 28 </script> |
| OLD | NEW |