mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-13 04:21:54 +00:00
11 lines
275 B
HTML
11 lines
275 B
HTML
<!DOCTYPE html>
|
|
<a id="id" href="http://example.net/path">
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
let a = document.getElementById('id');
|
|
println(a.href);
|
|
a.host = "example.com:65536";
|
|
println(a.href);
|
|
})
|
|
</script>
|