ladybird/Tests/LibWeb/Text/input/HTML/anchor-element-url-invalid-unicode-pathname.html
2025-03-20 11:50:49 +01:00

9 lines
263 B
HTML

<!DOCTYPE html>
<a id="anchor" href="http://ladybird.org/foo%C2%91%91"></a>
<script src="../include.js"></script>
<script>
test(() => {
const anchorElement = document.getElementById('anchor');
println(anchorElement.pathname);
})
</script>