ladybird/Tests/LibWeb/Text/input/HTML/href-invalid.html

10 lines
217 B
HTML
Raw Normal View History

2025-03-18 15:28:35 -03:00
<!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>