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

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

Issue 2688153004: ChromeOS OOBE: fix focus flow in MD-OOBE. (Closed)
Patch Set: 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_a11y_option.js
diff --git a/chrome/browser/resources/chromeos/login/oobe_a11y_option.js b/chrome/browser/resources/chromeos/login/oobe_a11y_option.js
index 08a24d8ce56299f8e3dc3bdea7cbf7413d4406b9..e1024804705dc4fbe09d6452f7578d5d74a9271f 100644
--- a/chrome/browser/resources/chromeos/login/oobe_a11y_option.js
+++ b/chrome/browser/resources/chromeos/login/oobe_a11y_option.js
@@ -23,6 +23,10 @@ Polymer({
/**
* ARIA-label for the button.
*/
- ariaLabel: String,
+ label: String,
stevenjb 2017/02/14 01:21:32 Why does this need to be renamed here and elsewher
Alexander Alekseev 2017/02/14 11:59:27 Because otherwise it will become aria-label attrib
stevenjb 2017/02/14 17:35:34 I see. I'm not super fond of just 'label' for some
Alexander Alekseev 2017/02/14 23:41:17 Done.
+ },
+
+ focus: function() {
+ this.$.button.focus();
},
});

Powered by Google App Engine
This is Rietveld 408576698