probable bug in parseQueryParameters
Reported by
oldrich....@gmail.com,
Jun 12 2018
|
|
Issue description
Runtime._queryParamsObject[name] = pair.join('=');
in parseQueryParameters in Runtime.js should be like:
Runtime._queryParamsObject[name] = decodeURIComponent(pair.join('='));
to allow to have GET parameters in the ws or wss url.
|
|
►
Sign in to add a comment |
|
Comment 1 by l...@chromium.org
, Jun 14 2018Status: Assigned (was: Unconfirmed)