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

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

Issue 2318873002: [MD-Settings-A11y] cr-expand-button should communicate that it expanded. (Closed)
Patch Set: rebase 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
« no previous file with comments | « chrome/test/data/chromeos/oobe_webui_browsertest.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)]]" alt="[[alt]]"> 11 icon="[[iconName_(expanded)]]" alt="[[alt]]"
12 aria-active-attribute="aria-expanded">
12 </paper-icon-button> 13 </paper-icon-button>
13 </template> 14 </template>
14 <script src="cr_expand_button.js"></script> 15 <script src="cr_expand_button.js"></script>
15 </dom-module> 16 </dom-module>
OLDNEW
« no previous file with comments | « chrome/test/data/chromeos/oobe_webui_browsertest.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698