Re: [whatwg/url] Forbidden host code points should include all C0 controls & U+007F (#627)

> Interestingly, in Firefox `new URL('https://a\u0007f.com')` 

That's because that is equivalent to:
`new URL("https://a" + String.fromCodePoint(0x07) + "f.com")` 🙂



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/url/issues/627#issuecomment-947959655

Received on Wednesday, 20 October 2021 19:12:17 UTC