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

Side by Side Diff: chrome/browser/resources/settings/controls/controlled_radio_button.html

Issue 2809033002: MD-Settings: A11y - Make sure checked is reflected. (Closed)
Patch Set: Created 3 years, 8 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 | « no previous file | 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/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-button/pape r-radio-button.html"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-button/pape r-radio-button.html">
3 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_in dicator.html"> 3 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_in dicator.html">
4 <link rel="import" href="pref_control_behavior.html"> 4 <link rel="import" href="pref_control_behavior.html">
5 <link rel="import" href="../prefs/pref_util.html"> 5 <link rel="import" href="../prefs/pref_util.html">
6 <link rel="import" href="../settings_shared_css.html"> 6 <link rel="import" href="../settings_shared_css.html">
7 7
8 <dom-module id="controlled-radio-button"> 8 <dom-module id="controlled-radio-button">
9 <template> 9 <template>
10 <style include="settings-shared"> 10 <style include="settings-shared">
(...skipping 14 matching lines...) Expand all
25 } 25 }
26 26
27 cr-policy-pref-indicator { 27 cr-policy-pref-indicator {
28 -webkit-margin-start: var(--settings-control-spacing); 28 -webkit-margin-start: var(--settings-control-spacing);
29 /* Enable pointer events for the indicator so :hover works. Disable 29 /* Enable pointer events for the indicator so :hover works. Disable
30 * clicks/taps via onIndicatorTap_ so outer on-tap doesn't trigger. */ 30 * clicks/taps via onIndicatorTap_ so outer on-tap doesn't trigger. */
31 pointer-events: all; 31 pointer-events: all;
32 } 32 }
33 </style> 33 </style>
34 34
35 <paper-radio-button id="radioButton" name="{{name}}" checked="{{checked}}" 35 <paper-radio-button id="radioButton" name="{{name}}" checked$="{{checked}}"
36 disabled="[[controlled_]]" tabindex$="[[tabindex]]"> 36 disabled="[[controlled_]]" tabindex$="[[tabindex]]">
37 [[label]] <content></content> 37 [[label]] <content></content>
38 </paper-radio-button> 38 </paper-radio-button>
39 39
40 <template is="dom-if" if="[[showIndicator_(controlled_, name, pref.*)]]"> 40 <template is="dom-if" if="[[showIndicator_(controlled_, name, pref.*)]]">
41 <cr-policy-pref-indicator pref="[[pref]]" on-tap="onIndicatorTap_" 41 <cr-policy-pref-indicator pref="[[pref]]" on-tap="onIndicatorTap_"
42 icon-aria-label="[[label]]"> 42 icon-aria-label="[[label]]">
43 </cr-policy-pref-indicator> 43 </cr-policy-pref-indicator>
44 </template> 44 </template>
45 45
46 </template> 46 </template>
47 <script src="controlled_radio_button.js"></script> 47 <script src="controlled_radio_button.js"></script>
48 </dom-module> 48 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698