Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/inspector/runtime/runtime-setPropertyValue.html |
| diff --git a/third_party/WebKit/LayoutTests/inspector/runtime/runtime-setPropertyValue.html b/third_party/WebKit/LayoutTests/inspector/runtime/runtime-setPropertyValue.html |
| index 70d23e1aca3766069b9128b5fe5e4043be00c942..6f62f431df4ddbb69f71064455e92ab280938cfb 100644 |
| --- a/third_party/WebKit/LayoutTests/inspector/runtime/runtime-setPropertyValue.html |
| +++ b/third_party/WebKit/LayoutTests/inspector/runtime/runtime-setPropertyValue.html |
| @@ -41,13 +41,13 @@ function test() |
| InspectorTest.RuntimeAgent.evaluate("object1", step1); |
| } |
| - function step1(error, result, wasThrown) |
| + function step1(error, result) |
|
dgozman
2016/08/11 01:54:36
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(); |