Re: [whatwg/url] Percent-decode more stuff? (#87)

Question: to which of the following should "http://host/%%36%31" be equivalent?
* "http://host/%2561" (representing the non-decodable percent as a percent and recovering immediately)
* "http://host/%25%25361" (representing the non-decodable percent as a percent and recovering _after_ the character responsible for its non-decodability)
* "http://host/%25%2536%2531" (giving up on percent decoding completely upon encountering a non-decodable percent)
* nothing (it is invalid, as in the older RFCs)
* other (e.g., "http://host/a") (please no)

-- 
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/87#issuecomment-255510163

Received on Saturday, 22 October 2016 06:12:44 UTC