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

Side by Side Diff: chrome/browser/resources/chromeos/power.html

Issue 786023002: Remove hard-coded font families in WebUI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix the presubmit warnings. Created 6 years 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 <!doctype html> 1 <!doctype html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title i18n-content="titleText"></title> 5 <title i18n-content="titleText"></title>
6 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
6 <link rel="stylesheet" href="chrome://power/power.css"> 7 <link rel="stylesheet" href="chrome://power/power.css">
7 <script src="chrome://resources/js/load_time_data.js"></script> 8 <script src="chrome://resources/js/load_time_data.js"></script>
8 <script src="chrome://resources/js/util.js"></script> 9 <script src="chrome://resources/js/util.js"></script>
9 <script src="chrome://power/strings.js"></script> 10 <script src="chrome://power/strings.js"></script>
10 <script src="chrome://power/power.js"></script> 11 <script src="chrome://power/power.js"></script>
11 </head> 12 </head>
12 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 13 <body>
13 <table id="main-table"> 14 <table id="main-table">
14 <tr class="section-row"> 15 <tr class="section-row">
15 <td class="title-cell"> 16 <td class="title-cell">
16 <p i18n-content="batteryChargeSectionTitle" class="title-text"></p> 17 <p i18n-content="batteryChargeSectionTitle" class="title-text"></p>
17 </td> 18 </td>
18 <td class="show-button-cell"> 19 <td class="show-button-cell">
19 <button id="battery-charge-show-button" class="show-button" 20 <button id="battery-charge-show-button" class="show-button"
20 i18n-content="showButton"> 21 i18n-content="showButton">
21 </button> 22 </button>
22 </td> 23 </td>
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 <button id="cpu-freq-reload-button" class="reload-button" 73 <button id="cpu-freq-reload-button" class="reload-button"
73 i18n-content="reloadButton"> 74 i18n-content="reloadButton">
74 </button> 75 </button>
75 </div> 76 </div>
76 </td> 77 </td>
77 </tr> 78 </tr>
78 </table> 79 </table>
79 <script src="chrome://resources/js/i18n_template2.js"></script> 80 <script src="chrome://resources/js/i18n_template2.js"></script>
80 </body> 81 </body>
81 </html> 82 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698