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

Side by Side Diff: chrome/test/data/webui/md_bookmarks/md_bookmarks_browsertest.js

Issue 2827573002: MD Bookmarks: Show toolbar overlay when multiple items are selected (Closed)
Patch Set: Review comments Created 3 years, 7 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 bookmarks page. 6 * @fileoverview Test suite for the Material Design bookmarks page.
7 */ 7 */
8 var ROOT_PATH = '../../../../../'; 8 var ROOT_PATH = '../../../../../';
9 9
10 GEN_INCLUDE( 10 GEN_INCLUDE(
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 160
161 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ 161 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([
162 'store_client_test.js', 162 'store_client_test.js',
163 ]), 163 ]),
164 }; 164 };
165 165
166 TEST_F('MaterialBookmarksStoreClientTest', 'All', function() { 166 TEST_F('MaterialBookmarksStoreClientTest', 'All', function() {
167 mocha.run(); 167 mocha.run();
168 }); 168 });
169 169
170 function MaterialBookmarksToolbarTest() {}
171
172 MaterialBookmarksToolbarTest.prototype = {
173 __proto__: MaterialBookmarksBrowserTest.prototype,
174
175 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([
176 'toolbar_test.js',
177 ]),
178 };
179
180 TEST_F('MaterialBookmarksToolbarTest', 'All', function() {
181 mocha.run();
182 });
183
170 function MaterialBookmarksUtilTest() {} 184 function MaterialBookmarksUtilTest() {}
171 185
172 MaterialBookmarksUtilTest.prototype = { 186 MaterialBookmarksUtilTest.prototype = {
173 __proto__: MaterialBookmarksBrowserTest.prototype, 187 __proto__: MaterialBookmarksBrowserTest.prototype,
174 188
175 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ 189 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([
176 'util_test.js', 190 'util_test.js',
177 ]), 191 ]),
178 }; 192 };
179 193
180 TEST_F('MaterialBookmarksUtilTest', 'All', function() { 194 TEST_F('MaterialBookmarksUtilTest', 'All', function() {
181 mocha.run(); 195 mocha.run();
182 }); 196 });
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/md_bookmarks/md_bookmarks_ui.cc ('k') | chrome/test/data/webui/md_bookmarks/toolbar_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698