Newer
Older
minerva / Tests / LibWeb / Text / input / HTML / History-scrollRestoration.html
@minerva minerva on 13 Jul 397 bytes Initial commit
<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>