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

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

Issue 2713243004: MD Settings: give Chrome logo an alt text (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
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="about_page_browser_proxy.html"> 2 <link rel="import" href="about_page_browser_proxy.html">
3 <link rel="import" href="../i18n_setup.html"> 3 <link rel="import" href="../i18n_setup.html">
4 <link rel="import" href="../icons.html"> 4 <link rel="import" href="../icons.html">
5 <link rel="import" href="../lifetime_browser_proxy.html"> 5 <link rel="import" href="../lifetime_browser_proxy.html">
6 <link rel="import" href="../route.html"> 6 <link rel="import" href="../route.html">
7 <link rel="import" href="../settings_page/main_page_behavior.html"> 7 <link rel="import" href="../settings_page/main_page_behavior.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_section.html"> 9 <link rel="import" href="../settings_page/settings_section.html">
10 <link rel="import" href="../settings_page_css.html"> 10 <link rel="import" href="../settings_page_css.html">
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 } 79 }
80 </if> 80 </if>
81 </style> 81 </style>
82 <div> 82 <div>
83 <settings-section page-title="$i18n{aboutPageTitle}" section="about"> 83 <settings-section page-title="$i18n{aboutPageTitle}" section="about">
84 <settings-animated-pages id="pages" section="about"> 84 <settings-animated-pages id="pages" section="about">
85 <neon-animatable route-path="default"> 85 <neon-animatable route-path="default">
86 <div class="settings-box two-line"> 86 <div class="settings-box two-line">
87 <img id="product-logo" on-tap="onProductLogoTap_" 87 <img id="product-logo" on-tap="onProductLogoTap_"
88 srcset="chrome://theme/current-channel-logo@1x 1x, 88 srcset="chrome://theme/current-channel-logo@1x 1x,
89 chrome://theme/current-channel-logo@2x 2x" alt=""> 89 chrome://theme/current-channel-logo@2x 2x"
90 alt="$i18n{aboutProductLogoAlt}">
90 <span class="product-title">$i18n{aboutProductTitle}</span> 91 <span class="product-title">$i18n{aboutProductTitle}</span>
91 </div> 92 </div>
92 <div class="settings-box two-line"> 93 <div class="settings-box two-line">
93 <!-- TODO(dpapad): Investigate why vulcanize does not handle well 94 <!-- TODO(dpapad): Investigate why vulcanize does not handle well
94 a new line after "getIconSrc_(", causes incorrect src URL --> 95 a new line after "getIconSrc_(", causes incorrect src URL -->
95 <iron-icon 96 <iron-icon
96 hidden="[[!showUpdateStatus_]]" 97 hidden="[[!showUpdateStatus_]]"
97 icon$="[[getIcon_( 98 icon$="[[getIcon_(
98 obsoleteSystemInfo_, currentUpdateStatusEvent_)]]" 99 obsoleteSystemInfo_, currentUpdateStatusEvent_)]]"
99 src="[[getIconSrc_(obsoleteSystemInfo_, currentUpdateStatusEve nt_)]]"> 100 src="[[getIconSrc_(obsoleteSystemInfo_, currentUpdateStatusEve nt_)]]">
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 <settings-detailed-build-info></settings-detailed-build-info> 212 <settings-detailed-build-info></settings-detailed-build-info>
212 </settings-subpage> 213 </settings-subpage>
213 </template> 214 </template>
214 </if> 215 </if>
215 </settings-animated-pages> 216 </settings-animated-pages>
216 </settings-section> 217 </settings-section>
217 </div> 218 </div>
218 </template> 219 </template>
219 <script src="about_page.js"></script> 220 <script src="about_page.js"></script>
220 </dom-module> 221 </dom-module>
OLDNEW
« no previous file with comments | « chrome/app/google_chrome_strings.grd ('k') | chrome/browser/ui/webui/set_as_default_browser_ui_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698