mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-21 17:51:52 +00:00
10 lines
237 B
HTML
10 lines
237 B
HTML
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
try {
|
|
location.href = 'http://@:www.invalid-url.com';
|
|
} catch (e) {
|
|
println(`Error setting href: ${e}`);
|
|
}
|
|
});
|
|
</script>
|