anchor-element-url-invalid-unicode-pathname.html 247 B

12345678
  1. <a id="anchor" href="http://ladybird.org/foo%C2%91%91"></a>
  2. <script src="../include.js"></script>
  3. <script>
  4. test(() => {
  5. const anchorElement = document.getElementById('anchor');
  6. println(anchorElement.pathname);
  7. })
  8. </script>