Bug 138957 - encodeWithURLEscapeSequences doesn't encode several chars
Summary: encodeWithURLEscapeSequences doesn't encode several chars
Status: NEW
Alias: None
Product: WebKit
Classification: Unclassified
Component: Platform (show other bugs)
Version: 528+ (Nightly build)
Hardware: All All
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-11-21 03:23 PST by cand
Modified: 2014-11-21 16:17 PST (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description cand 2014-11-21 03:23:59 PST
encodeWithURLEscapeSequences should URL-encode all needed chars. Currently it doesn't encode ?, #, +, & at least, all of which cause trouble.

For example, try encoding the string "c++ vector". It becomes "c+++vector", which when sent to a page obviously becomes "c   vector", not what the user intended.
Comment 1 Alexey Proskuryakov 2014-11-21 16:17:41 PST
I briefly looked into this in the past, and I think that the situation is substantially more complicated. Different parts of a URL need different escaping, so we need a more involved change than just adding more characters to this function.