| Index: third_party/WebKit/LayoutTests/inspector-enabled/sources/debugger/script-formatter-console.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector-enabled/sources/debugger/script-formatter-console.html b/third_party/WebKit/LayoutTests/inspector-enabled/sources/debugger/script-formatter-console.html
|
| index a4bdc3e33c78bd0d1504eb58182b75a8d2847030..91ba30756d5ce2b665e9e9caed0d132856418f1a 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector-enabled/sources/debugger/script-formatter-console.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector-enabled/sources/debugger/script-formatter-console.html
|
| @@ -50,7 +50,7 @@ var test = function()
|
| {
|
| dumpConsoleMessageURLs();
|
| InspectorTest.addResult("Pre-format row message list:");
|
| - InspectorTest.addResult(JSON.stringify(Object.keys(sourceFrame._rowMessageBuckets)));
|
| + InspectorTest.addResult(JSON.stringify(sourceFrame._rowMessageBuckets.keysArray()));
|
| var name = panel.visibleView.uiSourceCode().name();
|
| scriptFormatter._toggleFormatScriptSource();
|
| InspectorTest.showScriptSource(name + ":formatted", uiSourceCodeScriptFormatted);
|
| @@ -61,7 +61,7 @@ var test = function()
|
| dumpConsoleMessageURLs();
|
| InspectorTest.addResult("Post-format row message list:");
|
| var formattedSourceFrame = panel.visibleView;
|
| - InspectorTest.addResult(JSON.stringify(Object.keys(formattedSourceFrame._rowMessageBuckets)));
|
| + InspectorTest.addResult(JSON.stringify(formattedSourceFrame._rowMessageBuckets.keysArray()));
|
| next();
|
| }
|
| }
|
|
|