location-samedocument-crossorigin.html (1488B)
1 <!doctype html> 2 <script src="/resources/testharness.js"></script> 3 <script src="/resources/testharnessreport.js"></script> 4 <script src="/common/get-host-info.sub.js"></script> 5 <body> 6 7 <script> 8 async_test(t => { 9 const iframeURL = new URL("resources/cross-origin-iframe-helper.html", location.href); 10 iframeURL.hostname = get_host_info().REMOTE_HOST; 11 const iframe = document.createElement("iframe") 12 iframe.src = iframeURL; 13 document.body.append(iframe); 14 15 window.onmessage = t.step_func_done(e => { 16 assert_equals(e.data.navigationType, "push", "navigationType"); 17 assert_true(e.data.cancelable, "cancelable"); 18 assert_true(e.data.canIntercept, "canIntercept"); 19 assert_false(e.data.userInitiated, "userInitiated"); 20 assert_true(e.data.hashChange, "hashChange"); 21 assert_equals(e.data.formData, null, "formData"); 22 assert_equals(e.data.destination.url, iframe.src + "#foo", "destination.url"); 23 assert_true(e.data.destination.sameDocument, "destination.sameDocument"); 24 assert_equals(e.data.destination.key, "", "destination.key"); 25 assert_equals(e.data.destination.id, "", "destination.id"); 26 assert_equals(e.data.destination.index, -1, "destination.index"); 27 }); 28 29 navigation.onnavigate = t.unreached_func("onnavigate must not fire in the source window"); 30 window.onload = t.step_func(() => iframe.contentWindow.location.href = iframeURL + "#foo"); 31 }, "using location.href to navigate same-document targeting a cross-origin window"); 32 </script>