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

Unified Diff: ui/file_manager/integration_tests/file_manager/tab_index.js

Issue 1017863005: [Files.app] Fix the tabindex around search box (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adressed comment. Created 5 years, 9 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 | « ui/file_manager/file_manager/foreground/js/ui/search_box.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/file_manager/integration_tests/file_manager/tab_index.js
diff --git a/ui/file_manager/integration_tests/file_manager/tab_index.js b/ui/file_manager/integration_tests/file_manager/tab_index.js
index e47f6feb68b49d952bb885959c09f44d54015dd3..3b721af03d1a52ad7fd5b84bc8c0a5a414ce414f 100644
--- a/ui/file_manager/integration_tests/file_manager/tab_index.js
+++ b/ui/file_manager/integration_tests/file_manager/tab_index.js
@@ -32,11 +32,11 @@ testcase.searchBoxFocus = function() {
remoteCall.waitForElement(appId, ['#search-box input:focus']).
then(this.next);
},
- // Press the Tab key.
+ // Press the Esc key.
function(element) {
remoteCall.callRemoteTestUtil('fakeKeyDown',
appId,
- ['body', 'U+0009', false],
+ ['#search-box input', 'U+001B', false],
this.next);
},
// Check that the file list has the focus.
« no previous file with comments | « ui/file_manager/file_manager/foreground/js/ui/search_box.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698