| Index: Source/core/inspector/InjectedScriptSource.js
|
| diff --git a/Source/core/inspector/InjectedScriptSource.js b/Source/core/inspector/InjectedScriptSource.js
|
| index c2097012e8ce5bc1ae2d4e7fee3e11af91c20955..509381608fac316881c33f8f271d9f13caf967da 100644
|
| --- a/Source/core/inspector/InjectedScriptSource.js
|
| +++ b/Source/core/inspector/InjectedScriptSource.js
|
| @@ -253,7 +253,8 @@ InjectedScript.prototype = {
|
| */
|
| _parseObjectId: function(objectId)
|
| {
|
| - return InjectedScriptHost.evaluate("(" + objectId + ")");
|
| + // FIXME: upstream the change from InjectedScriptHost.evaluate to JSON.parse.
|
| + return /** @type {Object} */ (JSON.parse(objectId));
|
| },
|
|
|
| /**
|
|
|