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

Side by Side Diff: chrome/browser/resources/about_flash.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 i18n-values="dir:textdirection;"> 2 <html i18n-values="dir:textdirection;">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
5 <style> 6 <style>
6 .key { 7 .key {
7 font-weight: bold; 8 font-weight: bold;
8 } 9 }
9 10
10 .value { 11 .value {
11 margin-left: 15px; 12 margin-left: 15px;
12 } 13 }
13 </style> 14 </style>
14 </head> 15 </head>
15 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 16 <body>
16 <div id="loading-message" i18n-content="loadingMessage">LOADING_MESSAGE</div> 17 <div id="loading-message" i18n-content="loadingMessage">LOADING_MESSAGE</div>
17 <div id="body-container" style="visibility:hidden"> 18 <div id="body-container" style="visibility:hidden">
18 <div id="header"><h1 i18n-content="flashLongTitle">ABOUT_FLASH</h1></div> 19 <div id="header"><h1 i18n-content="flashLongTitle">ABOUT_FLASH</h1></div>
19 20
20 <div id="flashInfoTemplate"> 21 <div id="flashInfoTemplate">
21 <table cellpadding="2" cellspacing="0" border="0"> 22 <table cellpadding="2" cellspacing="0" border="0">
22 <tr jsselect="flashInfo"> 23 <tr jsselect="flashInfo">
23 <td><span dir="ltr" jscontent="key" class="key">KEY</span></td> 24 <td><span dir="ltr" jscontent="key" class="key">KEY</span></td>
24 <td><span dir="ltr" jscontent="value" class="value">VALUE</span></td> 25 <td><span dir="ltr" jscontent="value" class="value">VALUE</span></td>
25 </tr> 26 </tr>
26 </table> 27 </table>
27 </div> 28 </div>
28 </div> 29 </div>
29 <script src="chrome://resources/js/load_time_data.js"></script> 30 <script src="chrome://resources/js/load_time_data.js"></script>
30 <script src="chrome://flash/about_flash.js"></script> 31 <script src="chrome://flash/about_flash.js"></script>
31 <script src="chrome://flash/strings.js"></script> 32 <script src="chrome://flash/strings.js"></script>
32 <script src="chrome://resources/js/i18n_template2.js"></script> 33 <script src="chrome://resources/js/i18n_template2.js"></script>
33 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 34 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
34 <script src="chrome://resources/js/util.js"></script> 35 <script src="chrome://resources/js/util.js"></script>
35 </body> 36 </body>
36 </html> 37 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698