1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 13:54:58 +00:00
serenity/Tests/LibWeb/Text/input/HTML/Navigation-object-properties.html
Andrew Kaster 6c1944ee61 LibWeb: Flesh out apply the history step to setup the navigation API
We now populate the navigation history entries in the navigation API and
fire more navigation events as appropriate.
2024-01-19 11:47:59 +01:00

15 lines
484 B
HTML

<script src="../include.js"></script>
<script>
test(() => {
let n = window.navigation;
let len = n.entries().length;
println(`entries[length - 1] is current entry: ${n.entries()[len - 1] === n.currentEntry}`);
println(`currentEntry is a ${n.currentEntry}`);
println(`transition is null: ${n.transition == null}`);
println(`canGoBack: ${n.canGoBack}`);
println(`canGoForward: ${n.canGoForward}`);
});
</script>