| 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..1ea7fdb79f66740b471f8fe785ad155b729ee14f 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, exceptionDetails)
|
| {
|
| obj1 = InspectorTest.runtimeModel.createRemoteObject(result);
|
| InspectorTest.RuntimeAgent.evaluate("object2", step2);
|
| }
|
|
|
| - function step2(error, result, wasThrown)
|
| + function step2(error, result, exceptionDetails)
|
| {
|
| obj2 = InspectorTest.runtimeModel.createRemoteObject(result);
|
| next();
|
|
|