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

Side by Side Diff: chrome/browser/resources/chromeos/login/gaia_buttons.html

Issue 2718133004: ChromeOS OOBE: More accessibility fixes. (Closed)
Patch Set: Update after review Created 3 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 unified diff | Download patch
OLDNEW
1 <!-- Copyright 2015 The Chromium Authors. All rights reserved. 1 <!-- Copyright 2015 The Chromium Authors. All rights reserved.
2 Use of this source code is governed by a BSD-style license that can be 2 Use of this source code is governed by a BSD-style license that can be
3 found in the LICENSE file. --> 3 found in the LICENSE file. -->
4 4
5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h tml"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h tml">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html">
8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html "> 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html ">
9 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> 9 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
10 10
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 'icon' - a name of icon from material design set to show on button. 43 'icon' - a name of icon from material design set to show on button.
44 'disabled' - button is disabled when the attribute is set. 44 'disabled' - button is disabled when the attribute is set.
45 'aria-label' - accessibility label. 45 'aria-label' - accessibility label.
46 --> 46 -->
47 <dom-module id="gaia-icon-button"> 47 <dom-module id="gaia-icon-button">
48 <link rel="stylesheet" href="gaia_icon_button.css"> 48 <link rel="stylesheet" href="gaia_icon_button.css">
49 49
50 <template> 50 <template>
51 <div on-click="onClick_" on-tap="onClick_"> 51 <div on-click="onClick_" on-tap="onClick_">
52 <paper-icon-button id="iconButton" icon="[[icon]]" disabled="[[disabled]]" 52 <paper-icon-button id="iconButton" icon="[[icon]]" disabled="[[disabled]]"
53 aria-label="[[ariaLabel]]"> 53 aria-label$="[[ariaLabel]]">
54 </paper-icon-button> 54 </paper-icon-button>
55 </div> 55 </div>
56 </template> 56 </template>
57 </dom-module> 57 </dom-module>
OLDNEW
« no previous file with comments | « chrome/app/chromeos_strings.grdp ('k') | chrome/browser/resources/chromeos/login/oobe_a11y_option.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698