Make URL parser to not decode percent-encoded ASCII characters in URL's path, such as "%41" ('A'). Before this change: > const url = new URL("http://example.com/%41"); > url.href "http://example.com/A" After this change: > const url = new URL("http://example.com/%41"); > url.href "http://example.com/%41"
--
You received this message because you are subscribed to the Google Groups "blink-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to blink-dev+...@chromium.org.
To view this discussion on the web visit https://groups.google.com/a/chromium.org/d/msgid/blink-dev/CAFpjS_2-4PAY47VbDdd%2BHS%2BchmNUc9dW3BsRtW33LDr1QOeLGw%40mail.gmail.com.
I'm having a hard time assessing the risk, despite the very low
usage (it has doubled since the original email was sent - but
still very low) and other browsers shipping it.
That said, LGTM2 % having a base::Feature we can use as a
killswitch, in case we discover something we didn't anticipate.
To view this discussion on the web visit https://groups.google.com/a/chromium.org/d/msgid/blink-dev/CAGH7WqHcCModrUAQ%3DGJx-oiLcEmBwi%2BjU0ONCpnNWh%3Dp_THRdg%40mail.gmail.com.
Compatibility is nice.
LGTM3, but note Mike's request
/Daniel
To view this discussion on the web visit https://groups.google.com/a/chromium.org/d/msgid/blink-dev/b674e07c-7804-41d5-b8f5-7ada6295651b%40chromium.org.
To view this discussion on the web visit https://groups.google.com/a/chromium.org/d/msgid/blink-dev/CAFpjS_3_a5ZoZbPFw4V-CHH2%2BmCdqmQfD8yjQOuC8tJRSt%2B7Gw%40mail.gmail.com.
That is hard to judge without deep knowledge about how much is affected. Do you have any numbers or a gut feeling, or experience from the earlier changes?
/Daniel
I think putting this behind a kill switch is a good idea - like Daniel said, it's hard to judge the risk with just the info in the CL.
FWIW, my LGTM for the original launch was contingent on a kill switch (see down thread). So hopefully we had one. :)