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

Side by Side Diff: chrome/browser/resources/settings/internet_page/internet_page.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/cr_elements/network/cr_onc_types.htm l"> 2 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm l">
3 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 3 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
4 <link rel="import" href="chrome://resources/html/polymer.html"> 4 <link rel="import" href="chrome://resources/html/polymer.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l">
6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html">
7 <link rel="import" href="/route.html"> 7 <link rel="import" href="/route.html">
8 <link rel="import" href="/settings_page/settings_animated_pages.html"> 8 <link rel="import" href="/settings_page/settings_animated_pages.html">
9 <link rel="import" href="/settings_page/settings_subpage.html"> 9 <link rel="import" href="/settings_page/settings_subpage.html">
10 <link rel="import" href="/settings_shared_css.html"> 10 <link rel="import" href="/settings_shared_css.html">
(...skipping 20 matching lines...) Expand all
31 default-network="{{defaultNetwork}}" 31 default-network="{{defaultNetwork}}"
32 on-show-known-networks="onShowKnownNetworks_" 32 on-show-known-networks="onShowKnownNetworks_"
33 networking-private="[[networkingPrivate]]"> 33 networking-private="[[networkingPrivate]]">
34 </network-summary> 34 </network-summary>
35 <div actionable class="settings-box two-line" 35 <div actionable class="settings-box two-line"
36 on-tap="onExpandAddConnectionsTap_"> 36 on-tap="onExpandAddConnectionsTap_">
37 <div class="start layout horizontal center"> 37 <div class="start layout horizontal center">
38 <iron-icon icon="cr:add"></iron-icon> 38 <iron-icon icon="cr:add"></iron-icon>
39 <div>$i18n{internetAddConnection}</div> 39 <div>$i18n{internetAddConnection}</div>
40 </div> 40 </div>
41 <cr-expand-button 41 <cr-expand-button alt="$i18n{internetAddConnectionExpandA11yLabel}"
42 id="expandAddConnections" expanded="{{addConnectionExpanded_}}"> 42 id="expandAddConnections" expanded="{{addConnectionExpanded_}}">
43 </cr-expand-button> 43 </cr-expand-button>
44 </div> 44 </div>
45 <template is="dom-if" if="[[addConnectionExpanded_]]"> 45 <template is="dom-if" if="[[addConnectionExpanded_]]">
46 <div actionable class="settings-box continuation center" 46 <div actionable class="settings-box continuation center"
47 on-tap="onAddWiFiTap_"> 47 on-tap="onAddWiFiTap_">
48 <div class="start add-no-icon">$i18n{internetAddWiFi}</div> 48 <div class="start add-no-icon">$i18n{internetAddWiFi}</div>
49 </div> 49 </div>
50 <div actionable class="settings-box continuation center" 50 <div actionable class="settings-box continuation center"
51 on-tap="onAddVPNTap_"> 51 on-tap="onAddVPNTap_">
(...skipping 23 matching lines...) Expand all
75 network-type="[[knownNetworksType_]]" 75 network-type="[[knownNetworksType_]]"
76 on-show-detail="onShowDetail_" 76 on-show-detail="onShowDetail_"
77 networking-private="[[networkingPrivate]]"> 77 networking-private="[[networkingPrivate]]">
78 </settings-internet-known-networks-page> 78 </settings-internet-known-networks-page>
79 </settings-subpage> 79 </settings-subpage>
80 </template> 80 </template>
81 </settings-animated-pages> 81 </settings-animated-pages>
82 </template> 82 </template>
83 <script src="internet_page.js"></script> 83 <script src="internet_page.js"></script>
84 </dom-module> 84 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698