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

Side by Side Diff: ui/webui/resources/cr_elements/cr_expand_button/cr_expand_button.html

Issue 2348363002: [MD-Settings A11y] Set alt text for expandable buttons. (Closed)
Patch Set: feedback Created 4 years, 2 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 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 1 <link rel="import" href="chrome://resources/cr_elements/icons.html">
2 <link rel="import" href="chrome://resources/html/polymer.html"> 2 <link rel="import" href="chrome://resources/html/polymer.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html">
4 4
5 <dom-module id="cr-expand-button"> 5 <dom-module id="cr-expand-button">
6 <link rel="import" type="css" href="chrome://resources/cr_elements/shared.css" > 6 <link rel="import" type="css" href="chrome://resources/cr_elements/shared.css" >
7 <link rel="import" type="css" href="cr_expand_button.css"> 7 <link rel="import" type="css" href="cr_expand_button.css">
8 <template> 8 <template>
9 <content></content> 9 <content></content>
10 <paper-icon-button toggles active="{{expanded}}" disabled="[[disabled]]" 10 <paper-icon-button toggles active="{{expanded}}" disabled="[[disabled]]"
11 icon="[[iconName_(expanded)]]"> 11 icon="[[iconName_(expanded)]]" alt="[[alt]]">
12 </paper-icon-button> 12 </paper-icon-button>
13 </template> 13 </template>
14 <script src="cr_expand_button.js"></script> 14 <script src="cr_expand_button.js"></script>
15 </dom-module> 15 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698