This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 21646 - "If code point is not a URL code point, or code ..."
Summary: "If code point is not a URL code point, or code ..."
Status: RESOLVED FIXED
Alias: None
Product: WHATWG
Classification: Unclassified
Component: URL (show other bugs)
Version: unspecified
Hardware: PC Windows NT
: P2 normal
Target Milestone: Unsorted
Assignee: Anne
QA Contact: sideshowbarker+urlspec
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-04-10 00:41 UTC by Peter Occil
Modified: 2013-04-24 16:43 UTC (History)
1 user (show)

See Also:


Attachments

Description Peter Occil 2013-04-10 00:41:15 UTC
http://url.spec.whatwg.org/#parsing

[[
If code point is not a URL code point, or code point is "%" and remaining does not start with two ASCII hex digits, parse error. 
]]

Everywhere this appears it should be the following instead:

If code point is not a URL code point and not "%", parse error. If code point is "%" and remaining does not start with two ASCII hex digits, parse error. 

(In some places there is also a check for the EOF code point. That should remain where applicable.)