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

Unified Diff: chrome/test/data/webui/md_history/history_synced_tabs_test.js

Issue 2084843002: [MD History] Add history-list-container between app and history lists. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@tim_toolbar
Patch Set: rebase Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/webui/md_history/history_synced_tabs_test.js
diff --git a/chrome/test/data/webui/md_history/history_synced_tabs_test.js b/chrome/test/data/webui/md_history/history_synced_tabs_test.js
index 7c39f86c677c1f229ac46ec4cf9a9d3b600d2b12..5d73ff8a9334bbbf20e26f0c422e94e274328da0 100644
--- a/chrome/test/data/webui/md_history/history_synced_tabs_test.js
+++ b/chrome/test/data/webui/md_history/history_synced_tabs_test.js
@@ -44,11 +44,12 @@ cr.define('md_history.history_synced_tabs_test', function() {
suiteSetup(function() {
app = $('history-app');
// Not rendered until selected.
- assertEquals(null, app.$$('#history-synced-device-manager'));
+ assertEquals(null, app.$$('#synced-devices'));
- app.selectedPage_ = 'history-synced-device-manager';
+ app.selectedPage_ = 'synced-devices';
+ assertEquals('synced-devices', app.$['side-bar'].$.menu.selected);
return flush().then(function() {
- element = app.$$('#history-synced-device-manager');
+ element = app.$$('#synced-devices');
assertTrue(!!element);
});
});

Powered by Google App Engine
This is Rietveld 408576698