summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/navigation-api/navigation-methods/return-value/reload.html
blob: 388f0d94b5030c502c8ead246bcd83eb9ce740c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!doctype html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/helpers.js"></script>

<iframe id="i" src="/common/blank.html"></iframe>
<script>
promise_test(async t => {
  await new Promise(resolve => window.onload = resolve);

  const result = i.contentWindow.navigation.reload();
  assertNeverSettles(t, result, i.contentWindow);

  await new Promise(resolve => i.onload = () => t.step_timeout(resolve, 0));
}, "reload() promises never settle (without intercept())");
</script>