| 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..390af85cee084d7e7c3c933d498de49854d964cc 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, 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();
|
|
|