| Index: third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-go-to-file-dialog.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-go-to-file-dialog.html b/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-go-to-file-dialog.html
|
| index cb0d093ee5c848ef667fb0288d7da70430bcfdd9..6b4c794177a5dea4dfc72e77c8eed4e5d1854252 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-go-to-file-dialog.html
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-go-to-file-dialog.html
|
| @@ -46,8 +46,11 @@ function test()
|
| {
|
| WebInspector.panels.sources._sourcesView.showOpenResourceDialog();
|
| var dialog = WebInspector.OpenResourceDialog._instanceForTest;
|
| + var keys = [];
|
| for (var i = 0; i < dialog.itemCount(); ++i)
|
| - InspectorTest.addResult(dialog.itemKeyAt(i));
|
| + keys.push(dialog.itemKeyAt(i));
|
| + keys.sort();
|
| + InspectorTest.addResult(keys.join("\n"));
|
| WebInspector.Dialog._instance.detach();
|
| }
|
| };
|
|
|