Actions
Bug #11149
closedURI.parse keeps '?' for query and '#' for fragment even if they are empty
Bug #11149:
URI.parse keeps '?' for query and '#' for fragment even if they are empty
Description
will output "http://example.com/path?#" but I think it should be "http://example.com/path" without '?' and '#'
Updated by naruse (Yui NARUSE) over 11 years ago
- Status changed from Open to Assigned
- Assignee set to naruse (Yui NARUSE)
As URL Standard, current behavior is correct.
https://url.spec.whatwg.org/
But Google Chrome's behavior is like what you say.
I keep watching how W3C/WHATWG decide this behavior.
Updated by davispuh (Dāvis Mosāns) over 11 years ago
Updated by nobu (Nobuyoshi Nakada) over 8 years ago
At least, that test should not be in test_parse, but in test_set_component or others.
Updated by naruse (Yui NARUSE) over 8 years ago
- Status changed from Assigned to Rejected
Chrome also follows the behavior.
Actions