Newer
Older
minerva / Tests / LibWeb / Text / input / HTML / anchor-element-url-invalid-unicode-pathname.html
@minerva minerva on 13 Jul 247 bytes Initial commit
<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>