summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/navigation-api/updateCurrentEntry-method/resources/opaque-origin-page.html
blob: 59931458a6b8632ae7ce17286d1ebca80b88235a (plain)
1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<!-- Put this page in a sandbox to give it an opaque origin -->

<script>
test(t => {
  assert_throws_dom("InvalidStateError", () => {
    navigation.updateCurrentEntry({ state: 1 });
  });
}, "navigation.updateCurrentEntry() in an opaque origin iframe");
</script>