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

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

Issue 1932413003: [MD History] Refactor history.html into a history-app element. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address nit Created 4 years, 8 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_supervised_user_test.js
diff --git a/chrome/test/data/webui/md_history/history_supervised_user_test.js b/chrome/test/data/webui/md_history/history_supervised_user_test.js
index a39a39ff6828a155071334c472fc08236f9d4816..05122e64c60cd473ecc40ec6e295abd2661756d0 100644
--- a/chrome/test/data/webui/md_history/history_supervised_user_test.js
+++ b/chrome/test/data/webui/md_history/history_supervised_user_test.js
@@ -6,10 +6,12 @@ cr.define('md_history.history_supervised_user_test', function() {
function registerTests() {
suite('history-list supervised-user', function() {
var element;
+ var toolbar;
var TEST_HISTORY_RESULTS;
suiteSetup(function() {
- element = $('history-list');
+ element = $('history-app').$['history-list'];
+ toolbar = $('history-app').$['toolbar'];
TEST_HISTORY_RESULTS =
[createHistoryEntry('2016-03-15', 'https://www.google.com')];
});
@@ -19,8 +21,6 @@ cr.define('md_history.history_supervised_user_test', function() {
});
test('checkboxes disabled for supervised user', function(done) {
- var toolbar = $('toolbar');
-
flush(function() {
var items =
Polymer.dom(element.root).querySelectorAll('history-item');
@@ -40,7 +40,7 @@ cr.define('md_history.history_supervised_user_test', function() {
});
element.historyData[0].selected = true;
- $('toolbar').onDeleteTap_();
+ toolbar.onDeleteTap_();
});
teardown(function() {

Powered by Google App Engine
This is Rietveld 408576698