| Index: third_party/WebKit/LayoutTests/inspector/runtime/runtime-localStorage-getProperties.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/runtime/runtime-localStorage-getProperties.html b/third_party/WebKit/LayoutTests/inspector/runtime/runtime-localStorage-getProperties.html
|
| index 3cd34206d10eb04e6d9abf2ecea33702e607f84f..fe69b1be13dc118310ce7b0a3891e0b0b308c048 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/runtime/runtime-localStorage-getProperties.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/runtime/runtime-localStorage-getProperties.html
|
| @@ -9,7 +9,7 @@ function test()
|
| {
|
| InspectorTest.RuntimeAgent.evaluate("localStorage", step1);
|
|
|
| - function step1(error, result, wasThrown)
|
| + function step1(error, result, exceptionDetails)
|
| {
|
| var localStorageHandle = InspectorTest.runtimeModel.createRemoteObject(result);
|
| localStorageHandle.getOwnProperties(step2);
|
| @@ -21,7 +21,7 @@ function test()
|
| var property = properties[i];
|
| if (property.name !== "testProperty")
|
| continue;
|
| - property.value = { type: property.value.type, description: property.value.description };
|
| + property.value = { type: property.value.type, description: property.value.description };
|
| InspectorTest.dump(property);
|
| }
|
| InspectorTest.completeTest();
|
|
|