mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-09 10:31:51 +00:00
9 lines
217 B
HTML
9 lines
217 B
HTML
<!DOCTYPE html>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
const a = document.createElement("a");
|
|
a.href = "http://foo:b/c";
|
|
println(`href="${a.href}"`);
|
|
});
|
|
</script>
|