| Index: third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-compileScript.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-compileScript.html b/third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-compileScript.html
|
| index da8e833a6952aebd726edacc680ffea95c446565..a93d06f4882cc236bf31d4d0973492f9182d4d27 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-compileScript.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-compileScript.html
|
| @@ -49,8 +49,11 @@ function test()
|
| function onCompiled(messageObject)
|
| {
|
| var result = messageObject.result;
|
| - if (result.exceptionDetails)
|
| + if (result.exceptionDetails) {
|
| + result.exceptionDetails.exceptionId = 0;
|
| + result.exceptionDetails.exception.objectId = 0;
|
| result.exceptionDetails.scriptId = 0;
|
| + }
|
| if (result.scriptId)
|
| result.scriptId = 0;
|
| InspectorTest.logObject(result, "compilation result: ");
|
|
|