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 <body> | |
6 <script> | 5 <script> |
7 if (window.location.hostname == "127.0.0.1") { | 6 if (window.location.hostname == "127.0.0.1") { |
8 window.location.hostname = ORIGINAL_HOST; | 7 window.location.hostname = ORIGINAL_HOST; |
9 } else if (window.location.hostname == ORIGINAL_HOST) { | 8 } else if (window.location.hostname == ORIGINAL_HOST) { |
10 async_test(t => { | 9 async_test(t => { |
11 clearKnownCookies(); | 10 clearKnownCookies(); |
12 document.cookie = STRICT_DOM + "=1; SameSite=Strict; Max-Age=100; path=/
"; | 11 document.cookie = STRICT_DOM + "=1; SameSite=Strict; Max-Age=100; path=/
"; |
13 document.cookie = LAX_DOM + "=1; SameSite=Lax; Max-Age=100; path=/"; | 12 document.cookie = LAX_DOM + "=1; SameSite=Lax; Max-Age=100; path=/"; |
14 document.cookie = NORMAL_DOM + "=1; Max-Age=100; path=/"; | 13 document.cookie = NORMAL_DOM + "=1; Max-Age=100; path=/"; |
15 | 14 |
16 window.addEventListener("message", t.step_func_done(e => { | 15 window.addEventListener("message", t.step_func_done(e => { |
17 assert_equals(e.data.http[STRICT_DOM], "1", "strict"); | 16 assert_equals(e.data.http[STRICT_DOM], "1", "strict"); |
18 assert_equals(e.data.http[LAX_DOM], "1", "lax"); | 17 assert_equals(e.data.http[LAX_DOM], "1", "lax"); |
19 assert_equals(e.data.http[NORMAL_DOM], "1", "normal"); | 18 assert_equals(e.data.http[NORMAL_DOM], "1", "normal"); |
20 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"); |
21 e.source.close(); | 20 e.source.close(); |
22 })); | 21 })); |
23 | 22 |
24 var f = document.createElement('form'); | 23 var f = document.createElement('form'); |
25 f.action = "http://" + ORIGINAL_HOST + ":8000/cookies/resources/post-coo
kies-to-opener.php"; | 24 f.action = "http://" + ORIGINAL_HOST + ":8000/cookies/resources/post-coo
kies-to-opener.php"; |
26 f.method = "POST"; | 25 f.method = "POST"; |
27 f.target = "_blank"; | 26 f.target = "_blank"; |
28 window.onload = t.step_func(f.submit.bind(f)); | 27 window.onload = t.step_func(f.submit.bind(f)); |
29 document.body.appendChild(f); | |
30 }, "'" + ORIGINAL_HOST + "' is same-site with itself, so samesite cookies ar
e sent."); | 28 }, "'" + ORIGINAL_HOST + "' is same-site with itself, so samesite cookies ar
e sent."); |
31 } | 29 } |
32 </script> | 30 </script> |
33 </body> | |
OLD | NEW |