secure-non-secure.html (813B)
1 <!doctype html> 2 <html> 3 <head> 4 <meta charset=utf-8> 5 <title>Test cookie secure attribute parsing (non-secure origin)</title> 6 <meta name=help href="https://tools.ietf.org/html/rfc6265#section-5.2.5"> 7 <meta name="timeout" content="long"> 8 <script src="/resources/testharness.js"></script> 9 <script src="/resources/testharnessreport.js"></script> 10 <script src="/resources/testdriver.js"></script> 11 <script src="/resources/testdriver-vendor.js"></script> 12 <script src="/cookies/resources/cookie-helper.sub.js"></script> 13 </head> 14 <body> 15 <div id=log></div> 16 <script> 17 test(t => { 18 const win = window.open(`${INSECURE_ORIGIN}/cookies/attributes/resources/secure-non-secure-child.html`); 19 fetch_tests_from_window(win); 20 }); 21 </script> 22 </body> 23 </html>