mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
14 lines
413 B
HTML
14 lines
413 B
HTML
<!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>
|