summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/browsers/history/joint-session-history/joint-session-history-remove-iframe.html
blob: ee7aa368aff425dfffee66e97b8689631bd34be2 (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
<!doctype html>
<meta charset="utf-8">
<title>Joint session history length does not include entries from a removed iframe.</title>
<meta name="timeout" content="long">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<body>
<iframe id="frame" src="about:blank"></iframe>
<script>
async_test(function(t) {
    t.step_timeout(() => {
        var child = document.getElementById("frame");
        var old_history_len = history.length;
        child.onload = () => {
            assert_equals(old_history_len + 1, history.length);
            document.body.removeChild(document.getElementById("frame"));
            assert_equals(old_history_len, history.length);
            t.done();
        }
        child.src = "joint-session-history-filler.html";
    }, 1000);
});
</script>
</body>