| Index: third_party/WebKit/LayoutTests/inspector/elements/styles-4/styles-history.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/elements/styles-4/styles-history.html b/third_party/WebKit/LayoutTests/inspector/elements/styles-4/styles-history.html
|
| index fb4432c3153899b89912c216dc4b0914417264c8..9e83b8baf5d10f23c1a417aa8c59a5860f805eea 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/elements/styles-4/styles-history.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/elements/styles-4/styles-history.html
|
| @@ -115,10 +115,10 @@ function test()
|
| {
|
| function result()
|
| {
|
| - InspectorTest.addResult("History length: " + uiSourceCode.history.length);
|
| - for (var i = 0; i < uiSourceCode.history.length; ++i) {
|
| + InspectorTest.addResult("History length: " + uiSourceCode.history().length);
|
| + for (var i = 0; i < uiSourceCode.history().length; ++i) {
|
| InspectorTest.addResult("Item " + i + ":");
|
| - InspectorTest.addResult(uiSourceCode.history[i].content);
|
| + InspectorTest.addResult(uiSourceCode.history()[i].content);
|
| }
|
| next();
|
| }
|
|
|