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

Side by Side Diff: chrome/browser/resources/chromeos/mobile_setup.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 http-equiv="Content-Type" content="text/html; charset=utf-8"> 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5 <title i18n-content="title"></title> 5 <title i18n-content="title"></title>
6 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
6 <link rel="stylesheet" href="chrome://resources/css/dialogs.css"></link> 7 <link rel="stylesheet" href="chrome://resources/css/dialogs.css"></link>
7 <link rel="stylesheet" href="mobile_setup.css"></link> 8 <link rel="stylesheet" href="mobile_setup.css"></link>
8 <script src="chrome://resources/js/cr.js"></script> 9 <script src="chrome://resources/js/cr.js"></script>
9 <script src="chrome://resources/js/util.js"></script> 10 <script src="chrome://resources/js/util.js"></script>
10 <script src="chrome://resources/js/cr/ui/dialogs.js"></script> 11 <script src="chrome://resources/js/cr/ui/dialogs.js"></script>
11 <script src="mobile_setup.js"></script> 12 <script src="mobile_setup.js"></script>
12 </head> 13 </head>
13 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 14 <body>
14 <div id="mainDiv" class="dialog-body"> 15 <div id="mainDiv" class="dialog-body">
15 <iframe class="hidden" id="paymentForm" name="paymentForm" frameborder="0"></i frame> 16 <iframe class="hidden" id="paymentForm" name="paymentForm" frameborder="0"></i frame>
16 <div id="systemStatus" class="overlay opaque-overlay hidden"> 17 <div id="systemStatus" class="overlay opaque-overlay hidden">
17 <div class="startup"> 18 <div class="startup">
18 <div id="banner"> 19 <div id="banner">
19 <table border="0"> 20 <table border="0">
20 <tbody><tr> 21 <tbody><tr>
21 <td class="canvas-cell"><canvas id="canvas" width="56" 22 <td class="canvas-cell"><canvas id="canvas" width="56"
22 height="56"></canvas></td> 23 height="56"></canvas></td>
23 <td class="header-cell"> 24 <td class="header-cell">
(...skipping 14 matching lines...) Expand all
38 <div class="logo"></div> 39 <div class="logo"></div>
39 <div class="button-strip"> 40 <div class="button-strip">
40 <button id="closeButton" 41 <button id="closeButton"
41 i18n-content="close_button" class="hidden"></button> 42 i18n-content="close_button" class="hidden"></button>
42 </div> 43 </div>
43 </div> 44 </div>
44 </div> 45 </div>
45 </div> 46 </div>
46 </body> 47 </body>
47 </html> 48 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698