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

Side by Side Diff: chrome/browser/resources/settings/people_page/people_page.html

Issue 2749913002: MD Settings: Improve People Page Manage Profile button accessibility (Closed)
Patch Set: 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
« 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/cr_elements/cr_dialog/cr_dialog.html "> 1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html ">
2 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa nd_button.html"> 2 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa nd_button.html">
3 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 3 <link rel="import" href="chrome://resources/cr_elements/icons.html">
4 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 4 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
5 <link rel="import" href="chrome://resources/html/icon.html"> 5 <link rel="import" href="chrome://resources/html/icon.html">
6 <link rel="import" href="chrome://resources/html/polymer.html"> 6 <link rel="import" href="chrome://resources/html/polymer.html">
7 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 7 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll apse.html"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll apse.html">
9 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 9 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html">
10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 <if expr="not chromeos"> 116 <if expr="not chromeos">
117 <div class="middle two-line no-min-width" 117 <div class="middle two-line no-min-width"
118 on-tap="onProfileNameTap_" actionable> 118 on-tap="onProfileNameTap_" actionable>
119 </if> 119 </if>
120 <if expr="chromeos"> 120 <if expr="chromeos">
121 <div class="middle two-line no-min-width" on-tap="onPictureTap_" 121 <div class="middle two-line no-min-width" on-tap="onPictureTap_"
122 actionable> 122 actionable>
123 </if> 123 </if>
124 <div class="flex text-elide"> 124 <div class="flex text-elide">
125 <span id="profile-name">[[profileName_]]</span> 125 <span id="profile-name">[[profileName_]]</span>
126 <div class="secondary" hidden="[[!syncStatus.signedIn]]" 126 <div class="secondary" hidden="[[!syncStatus.signedIn]]">
127 id="profileNameSecondary">
128 [[syncStatus.signedInUsername]] 127 [[syncStatus.signedInUsername]]
129 </div> 128 </div>
130 </div> 129 </div>
130 <if expr="not chromeos">
131 <button class="subpage-arrow" is="paper-icon-button-light" 131 <button class="subpage-arrow" is="paper-icon-button-light"
132 aria-labelledby="profile-name" 132 aria-label="$i18n{editPerson}"
133 aria-describedby="profileNameSecondary"></button> 133 aria-describedby="profile-name"></button>
134 </if>
135 <if expr="chromeos">
136 <button class="subpage-arrow" is="paper-icon-button-light"
137 aria-label="$i18n{changePictureTitle}"
138 aria-describedby="profile-name"></button>
139 </if>
134 </div> 140 </div>
135 <if expr="not chromeos"> 141 <if expr="not chromeos">
136 <template is="dom-if" if="[[showSignin_(syncStatus)]]"> 142 <template is="dom-if" if="[[showSignin_(syncStatus)]]">
137 <span class="secondary-action"> 143 <span class="secondary-action">
138 <paper-button class="primary-button" on-tap="onSigninTap_" 144 <paper-button class="primary-button" on-tap="onSigninTap_"
139 disabled="[[syncStatus.setupInProgress]]"> 145 disabled="[[syncStatus.setupInProgress]]">
140 $i18n{syncSignin} 146 $i18n{syncSignin}
141 </paper-button> 147 </paper-button>
142 </span> 148 </span>
143 </template> 149 </template>
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
417 <if expr="chromeos"> 423 <if expr="chromeos">
418 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]"> 424 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]">
419 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog" 425 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"
420 on-close="onEasyUnlockTurnOffDialogClose_"> 426 on-close="onEasyUnlockTurnOffDialogClose_">
421 </easy-unlock-turn-off-dialog> 427 </easy-unlock-turn-off-dialog>
422 </template> 428 </template>
423 </if> 429 </if>
424 </template> 430 </template>
425 <script src="people_page.js"></script> 431 <script src="people_page.js"></script>
426 </dom-module> 432 </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