| Index: chrome/browser/resources/chromeos/quick_unlock/pin_keyboard.js
|
| diff --git a/chrome/browser/resources/chromeos/quick_unlock/pin_keyboard.js b/chrome/browser/resources/chromeos/quick_unlock/pin_keyboard.js
|
| index de93c08df1b17741ac5612be76bb7a37cf141619..f9f58738081b9aaf30ede887395d73cdfaaadcbd 100644
|
| --- a/chrome/browser/resources/chromeos/quick_unlock/pin_keyboard.js
|
| +++ b/chrome/browser/resources/chromeos/quick_unlock/pin_keyboard.js
|
| @@ -48,6 +48,22 @@ Polymer({
|
| }
|
| },
|
|
|
| + /**
|
| + * Gets the container holding the password field.
|
| + * @type {!HTMLInputElement}
|
| + */
|
| + get inputElement() {
|
| + return this.$$('#pin-input');
|
| + },
|
| +
|
| + /**
|
| + * Gets the submit button.
|
| + * @type {!HTMLElement}
|
| + */
|
| + get submitButton() {
|
| + return this.$$('.submit-button');
|
| + },
|
| +
|
| /** Transfers focus to the input element. */
|
| focus: function() {
|
| this.$$('#pin-input').focus();
|
|
|