Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(268)

Side by Side Diff: chrome/test/data/webui/md_history/md_history_browsertest.js

Issue 2237703004: [MD History] Focus the search bar on load. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix drawer test Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** 5 /**
6 * @fileoverview Test suite for the Material Design history page. 6 * @fileoverview Test suite for the Material Design history page.
7 */ 7 */
8 8
9 var ROOT_PATH = '../../../../../'; 9 var ROOT_PATH = '../../../../../';
10 10
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 TEST_F('MaterialHistoryBrowserTest', 'HistoryListTest', function() { 77 TEST_F('MaterialHistoryBrowserTest', 'HistoryListTest', function() {
78 md_history.history_list_test.registerTests(); 78 md_history.history_list_test.registerTests();
79 mocha.run(); 79 mocha.run();
80 }); 80 });
81 81
82 TEST_F('MaterialHistoryBrowserTest', 'HistoryToolbarTest', function() { 82 TEST_F('MaterialHistoryBrowserTest', 'HistoryToolbarTest', function() {
83 md_history.history_toolbar_test.registerTests(); 83 md_history.history_toolbar_test.registerTests();
84 mocha.run(); 84 mocha.run();
85 }); 85 });
86 86
87 TEST_F('MaterialHistoryBrowserTest', 'HistoryToolbarFocusTest', function() {
88 md_history.history_toolbar_focus_test.registerTests();
89 mocha.run();
90 });
91
87 TEST_F('MaterialHistoryBrowserTest', 'HistoryOverflowMenuTest', function() { 92 TEST_F('MaterialHistoryBrowserTest', 'HistoryOverflowMenuTest', function() {
88 md_history.history_overflow_menu_test.registerTests(); 93 md_history.history_overflow_menu_test.registerTests();
89 mocha.run(); 94 mocha.run();
90 }); 95 });
91 96
92 TEST_F('MaterialHistoryBrowserTest', 'LazyRenderTest', function() { 97 TEST_F('MaterialHistoryBrowserTest', 'LazyRenderTest', function() {
93 md_history.lazy_render_test.registerTests(); 98 md_history.lazy_render_test.registerTests();
94 mocha.run(); 99 mocha.run();
95 }); 100 });
96 101
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 return waitForAppUpgrade(); 152 return waitForAppUpgrade();
148 }); 153 });
149 }, 154 },
150 }; 155 };
151 156
152 TEST_F('MaterialHistoryWithQueryParamTest', 'RoutingTestWithQueryParam', 157 TEST_F('MaterialHistoryWithQueryParamTest', 'RoutingTestWithQueryParam',
153 function() { 158 function() {
154 md_history.history_routing_test_with_query_param.registerTests(); 159 md_history.history_routing_test_with_query_param.registerTests();
155 mocha.run(); 160 mocha.run();
156 }); 161 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698