Chromium Code Reviews| 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..42300c19672a3814cbd60e068a00deb3945597be 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) |
|
dgozman
2016/08/11 01:54:35
While you are here, let's add exceptionDetails sec
kozy
2016/08/11 21:04:22
Done.
|
| { |
| 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(); |