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

Side by Side Diff: chrome/browser/resources/chromeos/slow.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 <meta name="viewport" content="width=device-width, initial-scale=1.0, 5 <meta name="viewport" content="width=device-width, initial-scale=1.0,
6 maximum-scale=1.0, user-scalable=no"> 6 maximum-scale=1.0, user-scalable=no">
7 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
7 <link rel="stylesheet" href="chrome://resources/css/widgets.css"> 8 <link rel="stylesheet" href="chrome://resources/css/widgets.css">
8 <link rel="stylesheet" href="slow.css"> 9 <link rel="stylesheet" href="slow.css">
9 <script src="chrome://resources/js/load_time_data.js"></script> 10 <script src="chrome://resources/js/load_time_data.js"></script>
10 <script src="chrome://resources/js/cr.js"></script> 11 <script src="chrome://resources/js/cr.js"></script>
11 <script src="chrome://resources/js/cr/event_target.js"></script> 12 <script src="chrome://resources/js/cr/event_target.js"></script>
12 <script src="chrome://resources/js/util.js"></script> 13 <script src="chrome://resources/js/util.js"></script>
13 <script src="chrome://slow/slow.js"></script> 14 <script src="chrome://slow/slow.js"></script>
14 <script src="chrome://slow/strings.js"></script> 15 <script src="chrome://slow/strings.js"></script>
15 </head> 16 </head>
16 <body i18n-values=".style.fontFamily:fontfamily;"> 17 <body>
17 <div id="container" class="container"> 18 <div id="container" class="container">
18 <div i18n-content="slowDescription"></div> 19 <div i18n-content="slowDescription"></div>
19 <br> 20 <br>
20 <div i18n-values=".innerHTML:slowWarning"></div> 21 <div i18n-values=".innerHTML:slowWarning"></div>
21 <div id="container-inner" width=100% class="container-inner"> 22 <div id="container-inner" width=100% class="container-inner">
22 <button id="slow-disable" i18n-content="slowDisable" hidden></button> 23 <button id="slow-disable" i18n-content="slowDisable" hidden></button>
23 <button id="slow-enable" i18n-content="slowEnable" hidden></button> 24 <button id="slow-enable" i18n-content="slowEnable" hidden></button>
24 </div> 25 </div>
25 </div> 26 </div>
26 <script src="chrome://resources/js/i18n_template2.js"></script> 27 <script src="chrome://resources/js/i18n_template2.js"></script>
27 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 28 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
28 </body> 29 </body>
29 </html> 30 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698