Newer
Older
minerva / Tests / LibWeb / Text / input / HTML / Location-protocol-setter.html
@minerva minerva on 13 Jul 278 bytes Initial commit
<!DOCTYPE html>
<script src="../include.js"></script>
<script>
    test(() => {
        try {
            window.location.protocol = "\xff";
        } catch (e) {
            println(`Setting location.protocol to an invalid value throws ${e.name}`);
        }
    });
</script>