ladybird/Tests/LibWeb/Text/input/HTML/History-scrollRestoration.html

14 lines
413 B
HTML
Raw Normal View History

2025-03-18 19:28:35 +01:00
<!DOCTYPE html>
<script src="../include.js"></script>
<script>
test(() => {
println(history.scrollRestoration);
history.scrollRestoration = 'bad value';
println(history.scrollRestoration);
history.scrollRestoration = 'manual';
println(history.scrollRestoration);
history.scrollRestoration = 'auto';
println(history.scrollRestoration);
});
</script>