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 async_test(t => { | 6 if (window.location.hostname == "127.0.0.1") { |
7 clearKnownCookies(); | 7 window.location.hostname = ORIGINAL_HOST; |
8 document.cookie = STRICT_DOM + "=1; SameSite=Strict; Max-Age=100; path=/"; | 8 } else if (window.location.hostname == ORIGINAL_HOST) { |
9 document.cookie = LAX_DOM + "=1; SameSite=Lax; Max-Age=100; path=/"; | 9 async_test(t => { |
10 document.cookie = NORMAL_DOM + "=1; Max-Age=100; path=/"; | 10 clearKnownCookies(); |
| 11 document.cookie = STRICT_DOM + "=1; SameSite=Strict; Max-Age=100; path=/
"; |
| 12 document.cookie = LAX_DOM + "=1; SameSite=Lax; Max-Age=100; path=/"; |
| 13 document.cookie = NORMAL_DOM + "=1; Max-Age=100; path=/"; |
11 | 14 |
12 window.addEventListener("message", t.step_func_done(e => { | 15 window.addEventListener("message", t.step_func_done(e => { |
13 assert_equals(e.data.http[STRICT_DOM], "1", "strict"); | 16 assert_equals(e.data.http[STRICT_DOM], "1", "strict"); |
14 assert_equals(e.data.http[LAX_DOM], "1", "lax"); | 17 assert_equals(e.data.http[LAX_DOM], "1", "lax"); |
15 assert_equals(e.data.http[NORMAL_DOM], "1", "normal"); | 18 assert_equals(e.data.http[NORMAL_DOM], "1", "normal"); |
16 assert_equals(e.data.document, STRICT_DOM + "=1; " + LAX_DOM + "=1; " +
NORMAL_DOM + "=1"); | 19 assert_equals(e.data.document, STRICT_DOM + "=1; " + LAX_DOM + "=1;
" + NORMAL_DOM + "=1"); |
17 })); | 20 })); |
18 | 21 |
19 var i = window.open("http://" + ORIGINAL_HOST + ":8000/cookies/resources/pos
t-cookies-to-opener.php"); | 22 var i = window.open("http://" + ORIGINAL_HOST + ":8000/cookies/resources
/post-cookies-to-opener.php"); |
20 }, "'" + ORIGINAL_HOST + "' is same-site with itself, so samesite cookies are se
nt."); | 23 }, "'" + ORIGINAL_HOST + "' is same-site with itself, so samesite cookies ar
e sent."); |
| 24 } |
21 </script> | 25 </script> |
OLD | NEW |