2025-03-18 15:28:35 -03:00
|
|
|
<!DOCTYPE html>
|
2024-10-02 05:33:05 -03:00
|
|
|
<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>
|