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

Unified Diff: chrome/test/data/webui/extensions/extension_keyboard_shortcuts_test.js

Issue 2101933005: [MD Extensions] Implement keyboard shortcuts page (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nits + latest master 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/extensions/extension_keyboard_shortcuts_test.js
diff --git a/chrome/test/data/webui/extensions/extension_keyboard_shortcuts_test.js b/chrome/test/data/webui/extensions/extension_keyboard_shortcuts_test.js
index 115399de641470eb9b786d15be8da0ca2731e046..f2935d77b2c87e9bc7d9bee26b2db695d393722d 100644
--- a/chrome/test/data/webui/extensions/extension_keyboard_shortcuts_test.js
+++ b/chrome/test/data/webui/extensions/extension_keyboard_shortcuts_test.js
@@ -82,15 +82,11 @@ cr.define('extension_keyboard_shortcut_tests', function() {
var commands = card1.querySelectorAll('.command-entry');
assertEquals(1, commands.length);
expectTrue(isVisibleOnCard(commands[0], '.command-name'));
- expectTrue(isVisibleOnCard(commands[0], '.command-keys'));
- expectFalse(isVisibleOnCard(commands[0], '.no-command-set'));
expectTrue(isVisibleOnCard(commands[0], 'paper-dropdown-menu'));
var card2 = cards[1];
commands = card2.querySelectorAll('.command-entry');
assertEquals(2, commands.length);
- expectFalse(isVisibleOnCard(commands[1], '.command-keys'));
- expectTrue(isVisibleOnCard(commands[1], '.no-command-set'));
expectEquals(
1,

Powered by Google App Engine
This is Rietveld 408576698