mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 03:09:08 +00:00
12 lines
278 B
HTML
12 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>
|