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

Side by Side Diff: chrome/browser/resources/about_version.html

Issue 333032: Ensure that Helvetica, if installed, is used instead of Arial. This should be... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/resources/about_stats.html ('k') | chrome/browser/resources/extensions_ui.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 2
3 <!-- 3 <!--
4 about:version template page 4 about:version template page
5 --> 5 -->
6 6
7 <html id="t"> 7 <html id="t">
8 <head> 8 <head>
9 <title i18n-content="title"></title> 9 <title i18n-content="title"></title>
10 <style> 10 <style>
11 body { 11 body {
12 font-family:arial; 12 font-family:Helvetica,Arial,sans-serif;
13 background-color:white; 13 background-color:white;
14 color: black; 14 color: black;
15 margin: 0px; 15 margin: 0px;
16 } 16 }
17 #outer { 17 #outer {
18 text-align: left; 18 text-align: left;
19 margin-top: 10px; 19 margin-top: 10px;
20 margin-left: auto; 20 margin-left: auto;
21 margin-right: auto; 21 margin-right: auto;
22 width: 800px; 22 width: 800px;
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 <td class="version" id="js_version" i18n-content="js_version"></td> 83 <td class="version" id="js_version" i18n-content="js_version"></td>
84 </tr> 84 </tr>
85 <tr><td class="label" valign="top">User Agent</td> 85 <tr><td class="label" valign="top">User Agent</td>
86 <td class="version" id="useragent" i18n-content="useragent"></td> 86 <td class="version" id="useragent" i18n-content="useragent"></td>
87 </tr> 87 </tr>
88 </table> 88 </table>
89 </div> 89 </div>
90 </body> 90 </body>
91 91
92 </html> 92 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/about_stats.html ('k') | chrome/browser/resources/extensions_ui.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698