New issue
Advanced search Search tips

Issue 851855 link

Starred by 1 user

Issue metadata

Status: Assigned
Owner:
Components:
EstimatedDays: ----
NextAction: ----
OS: All
Pri: 2
Type: Bug



Sign in to add a comment

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.
 

Comment 1 by l...@chromium.org, Jun 14 2018

Owner: einbinder@chromium.org
Status: Assigned (was: Unconfirmed)

Sign in to add a comment