blob: d828c5cd0ee2fc0b0ff543779b088ccfa611360e [file] [log] [blame]
<!doctype html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/get-host-info.sub.js"></script>
<script>
async_test(t => {
appHistory.onnavigate = t.step_func_done(e => {
assert_true(e.cancelable);
assert_false(e.canTransition);
assert_false(e.userInitiated);
assert_false(e.hashChange);
assert_throws_dom("SecurityError", () => e.transitionWhile(Promise.resolve()));
e.preventDefault();
});
window.onload = t.step_func(() => location.href = get_host_info().HTTPS_REMOTE_ORIGIN);
}, "AppHistoryNavigateEvent's transitionWhile() should throw if called for a cross origin navigation");
</script>