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

Unified Diff: chrome/test/data/webui/md_user_manager/control_bar_tests.js

Issue 2024233003: MD User Manager: Refactors existing dialogs in User Manager into <user-manager-dialog> (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@md-user-manager-locked-test
Patch Set: Reuse Polymer.PaperDialogBehavior Created 4 years, 6 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_user_manager/control_bar_tests.js
diff --git a/chrome/test/data/webui/md_user_manager/control_bar_tests.js b/chrome/test/data/webui/md_user_manager/control_bar_tests.js
index f6901059557fb13a613864c03735b94ef1d27061..fa04af1044abd34f2428b917955a72ce4bb045b1 100644
--- a/chrome/test/data/webui/md_user_manager/control_bar_tests.js
+++ b/chrome/test/data/webui/md_user_manager/control_bar_tests.js
@@ -92,7 +92,7 @@ cr.define('user_manager.control_bar_tests', function() {
Polymer.dom.flush();
// The dialog is visible.
- assertLT(0, errorDialogElement.$$('#backdrop').offsetHeight);
+ assertLT(0, errorDialogElement.$.dialog.$$('#backdrop').offsetHeight);
});
});
@@ -105,7 +105,7 @@ cr.define('user_manager.control_bar_tests', function() {
Polymer.dom.flush();
// The error dialog is visible.
- assertLT(0, errorDialogElement.$$('#backdrop').offsetHeight);
+ assertLT(0, errorDialogElement.$.dialog.$$('#backdrop').offsetHeight);
});
});
});

Powered by Google App Engine
This is Rietveld 408576698