Newer
Older
minerva / Tests / LibWeb / Text / input / navigation / trigger-fragment-navigation-from-js.html
@minerva minerva on 13 Jul 222 bytes Initial commit
<!DOCTYPE html>
<script src="../include.js"></script>
<script>
    test(() => {
        location.hash = "#1";
        println(location.hash);
        location.hash = "#2";
        println(location.hash);
    });
</script>