ladybird/Tests/LibWeb/Text/input/HTML/Location-protocol-setter.html
2024-08-17 07:39:58 +02:00

11 lines
278 B
HTML

<!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>