1
0
Fork 0
firefox/testing/web-platform/tests/navigation-api/navigation-history-entry/entries-after-blank-navigation.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

25 lines
912 B
HTML

<!doctype html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/is_uuid.js"></script>
<iframe id="i" src="/common/blank.html"></iframe>
<script>
async_test(t => {
window.onload = t.step_func(() => {
i.onload = t.step_func_done(() => {
let entries = i.contentWindow.navigation.entries();
assert_equals(entries.length, 2);
assert_not_equals(entries[1].key, entries[0].key);
assert_not_equals(entries[1].url, entries[0].url);
assert_equals(entries[1].url, "about:blank");
assert_not_equals(entries[1].id, entries[0].id);
assert_true(isUUID(entries[0].key));
assert_true(isUUID(entries[0].id));
assert_true(isUUID(entries[1].key));
assert_true(isUUID(entries[1].id));
});
i.src = "about:blank";
});
}, "entries() after navigation to about:blank");
</script>