URLParser should correctly strip unnecessary 0's in IPv6 addresses
Created attachment 290727 [details] Patch
Comment on attachment 290727 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=290727&action=review > Source/WebCore/platform/URLParser.cpp:2318 > + if (UNLIKELY((value && leadingZeros) || (!value && length > 1) || (length > 1 && !value))) Oops. This was redundant. Removed one of the checks.
http://trac.webkit.org/changeset/206819