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

Unified Diff: chrome/test/data/webui/md_downloads/toolbar_tests.js

Issue 2650303003: MD Downloads: convert <paper-dropdown-menu> to <dialog is="cr-action-menu"> (Closed)
Patch Set: browser test fixes Created 3 years, 11 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
« no previous file with comments | « chrome/browser/resources/md_downloads/vulcanized.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/webui/md_downloads/toolbar_tests.js
diff --git a/chrome/test/data/webui/md_downloads/toolbar_tests.js b/chrome/test/data/webui/md_downloads/toolbar_tests.js
index 5729be5c6e439a0f82e93192dc1fc0e81bdd9206..7f287c3ee05f34ea4611a25fec79a9226b3bea3d 100644
--- a/chrome/test/data/webui/md_downloads/toolbar_tests.js
+++ b/chrome/test/data/webui/md_downloads/toolbar_tests.js
@@ -26,11 +26,11 @@ suite('toolbar tests', function() {
});
test('resize closes more options menu', function() {
- MockInteractions.tap(toolbar.$$('paper-icon-button'));
- assertTrue(toolbar.$.more.opened);
+ MockInteractions.tap(toolbar.$.moreActions);
+ assertTrue(toolbar.$.moreActionsMenu.open);
window.dispatchEvent(new CustomEvent('resize'));
- assertFalse(toolbar.$.more.opened);
+ assertFalse(toolbar.$.moreActionsMenu.open);
});
test('search starts spinner', function() {
« no previous file with comments | « chrome/browser/resources/md_downloads/vulcanized.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698