Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/inspector/runtime/runtime-es6-setSymbolPropertyValue.html |
| diff --git a/third_party/WebKit/LayoutTests/inspector/runtime/runtime-es6-setSymbolPropertyValue.html b/third_party/WebKit/LayoutTests/inspector/runtime/runtime-es6-setSymbolPropertyValue.html |
| index a83679110fb697a7e695f64e8a7c904e6313df53..8b8c21fdd397990488829bb010bca19289b52b2b 100644 |
| --- a/third_party/WebKit/LayoutTests/inspector/runtime/runtime-es6-setSymbolPropertyValue.html |
| +++ b/third_party/WebKit/LayoutTests/inspector/runtime/runtime-es6-setSymbolPropertyValue.html |
| @@ -28,13 +28,13 @@ function test() |
| InspectorTest.RuntimeAgent.evaluate("object1", step1); |
| } |
| - function step1(error, result, wasThrown) |
| + function step1(error, result) |
|
dgozman
2016/08/11 01:54:35
While you are here, let's add exceptionDetails sec
kozy
2016/08/11 21:04:22
Done.
|
| { |
| obj1 = InspectorTest.runtimeModel.createRemoteObject(result); |
| InspectorTest.RuntimeAgent.evaluate("symbol1", step2); |
| } |
| - function step2(error, result, wasThrown) |
| + function step2(error, result) |
|
dgozman
2016/08/11 01:54:35
While you are here, let's add exceptionDetails sec
kozy
2016/08/11 21:04:21
Done.
|
| { |
| name = WebInspector.RemoteObject.toCallArgument(InspectorTest.runtimeModel.createRemoteObject(result)); |
| next(); |