| Index: chrome/browser/resources/chromeos/login/oobe_buttons.html
|
| diff --git a/chrome/browser/resources/chromeos/login/oobe_buttons.html b/chrome/browser/resources/chromeos/login/oobe_buttons.html
|
| index d398bbbab4e02d8fec295b4e4aa6460342ed2bc7..2dc7232bb4a0d23b0bf7cb22ccd43324f9af828c 100644
|
| --- a/chrome/browser/resources/chromeos/login/oobe_buttons.html
|
| +++ b/chrome/browser/resources/chromeos/login/oobe_buttons.html
|
| @@ -36,8 +36,9 @@
|
|
|
| Attributes:
|
| 'disabled' - button is disabled when the attribute is set.
|
| - 'inverse' - makes text white and background blue
|
| + 'inverse' - makes text white and background blue.
|
| 'label-for-aria' - accessibility label.
|
| + 'border' - adds border to the button.
|
| -->
|
| <dom-module id="oobe-text-button">
|
| <link rel="stylesheet" href="oobe_text_button.css">
|
| @@ -53,7 +54,8 @@
|
| }
|
| </style>
|
| <paper-button id="textButton" on-tap="onClick_" disabled="[[disabled]]"
|
| - inverse$="[[inverse]]" aria-label$="[[labelForAria]]">
|
| + inverse$="[[inverse]]" aria-label$="[[labelForAria]]"
|
| + border$="[[border]]">
|
| <div id="container"
|
| class="flex layout horizontal center center-justified self-stretch">
|
| <content></content>
|
|
|