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

Unified Diff: chrome/browser/resources/chromeos/login/oobe_i18n_dropdown.js

Issue 2688153004: ChromeOS OOBE: fix focus flow in MD-OOBE. (Closed)
Patch Set: Rebased. Created 3 years, 10 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/browser/resources/chromeos/login/oobe_i18n_dropdown.js
diff --git a/chrome/browser/resources/chromeos/login/oobe_i18n_dropdown.js b/chrome/browser/resources/chromeos/login/oobe_i18n_dropdown.js
index bcd062d59a198e9bcdf37f3579b184aa0a50b0ad..7e7253a9c29968655705b965733c6115178607b5 100644
--- a/chrome/browser/resources/chromeos/login/oobe_i18n_dropdown.js
+++ b/chrome/browser/resources/chromeos/login/oobe_i18n_dropdown.js
@@ -30,7 +30,7 @@ Polymer({
/**
* ARIA-label for the selection menu.
*/
- ariaLabel: String,
+ labelForAria: String,
},
/**
@@ -39,6 +39,10 @@ Polymer({
*/
idToItem_: null,
+ focus: function() {
+ this.$.select.focus();
+ },
+
/**
* @param {string} value Option value.
* @private

Powered by Google App Engine
This is Rietveld 408576698