summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/navigation-api/navigation-methods/traverseTo-after-data-url.html
blob: 0b21a741d3017b71fe26acd586faddbf3c5802b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!doctype html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<body>
<script>
async_test(t => {
  let i = document.createElement("iframe");
  i.src = "data:text/html,";
  document.body.appendChild(i);
  let start_length = history.length;

  // Wait for after the load event so that the navigation doesn't get converted
  // into a replace navigation.
  window.onload = () => t.step_timeout(() => {
    i.contentWindow.location = "/common/blank.html";
    i.onload = () => t.step_timeout(() => {
      assert_equals(history.length, start_length + 1);
      assert_equals(i.contentWindow.navigation.entries().length, 1);
      i.contentWindow.navigation.navigate("#fragment");
      assert_equals(i.contentWindow.navigation.entries().length, 2);
      i.contentWindow.navigation.back().committed.then(t.step_func(() => {
        assert_equals(i.contentWindow.navigation.entries().length, 2);
        assert_equals(i.contentWindow.navigation.currentEntry.index, 0);
        return i.contentWindow.navigation.forward().committed;
      })).then(t.step_func_done(() => {
        assert_equals(i.contentWindow.navigation.entries().length, 2);
        assert_equals(i.contentWindow.navigation.currentEntry.index, 1);
      }));
    }, 0);
  }, 0);
}, "navigation.traverseTo() should work in an iframe that started at a data: url");
</script>
</body>