Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/inspector/runtime/runtime-getProperties.html |
| diff --git a/third_party/WebKit/LayoutTests/inspector/runtime/runtime-getProperties.html b/third_party/WebKit/LayoutTests/inspector/runtime/runtime-getProperties.html |
| index 40485d4d101a7d176ada6a6abc52f75cbf9f847a..0fb62e25218e13bbd077f2a509b69c4efc3c4147 100644 |
| --- a/third_party/WebKit/LayoutTests/inspector/runtime/runtime-getProperties.html |
| +++ b/third_party/WebKit/LayoutTests/inspector/runtime/runtime-getProperties.html |
| @@ -27,13 +27,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("object2", 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:22
Done.
|
| { |
| obj2 = InspectorTest.runtimeModel.createRemoteObject(result); |
| next(); |