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

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

Issue 786023002: Remove hard-coded font families in WebUI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: The First Version. 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 <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" type="text/css" href="nfc_debug.css"> 7 <link rel="stylesheet" type="text/css" href="nfc_debug.css">
Dan Beam 2014/12/10 19:49:24 nit: [type] not needed
xdai1 2014/12/11 02:59:22 Removing it doesn't cause any problem. But I didn'
7 <script src="chrome://resources/js/cr.js"></script> 8 <script src="chrome://resources/js/cr.js"></script>
8 <script src="chrome://resources/js/load_time_data.js"></script> 9 <script src="chrome://resources/js/load_time_data.js"></script>
9 <script src="chrome://resources/js/util.js"></script> 10 <script src="chrome://resources/js/util.js"></script>
10 <script src="strings.js"></script> 11 <script src="strings.js"></script>
11 <script src="nfc_debug.js"></script> 12 <script src="nfc_debug.js"></script>
12 </head> 13 </head>
13 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 14 <body>
14 <h1 i18n-content="titleText"></h1> 15 <h1 i18n-content="titleText"></h1>
15 <p id="nfc-not-supported" i18n-content="notSupportedText"></p> 16 <p id="nfc-not-supported" i18n-content="notSupportedText"></p>
16 <div id="wrapper"> 17 <div id="wrapper">
17 <div id="nfc-adapter-info" class="entity-div"> 18 <div id="nfc-adapter-info" class="entity-div">
18 <h3 i18n-content="adapterHeaderText"></h3> 19 <h3 i18n-content="adapterHeaderText"></h3>
19 <div id="adapter-parameters"></div> 20 <div id="adapter-parameters"></div>
20 <div id="adapter-toggles"> 21 <div id="adapter-toggles">
21 <button id="power-toggle"></button> 22 <button id="power-toggle"></button>
22 <button id="poll-toggle"></button> 23 <button id="poll-toggle"></button>
23 </div> 24 </div>
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 <h3 i18n-content="recordsHeaderText"></h3> 122 <h3 i18n-content="recordsHeaderText"></h3>
122 <hr/> 123 <hr/>
123 <div id="tag-records-container"></div> 124 <div id="tag-records-container"></div>
124 <hr/> 125 <hr/>
125 </div> 126 </div>
126 </div> 127 </div>
127 </div> 128 </div>
128 <script src="chrome://resources/js/i18n_template2.js"></script> 129 <script src="chrome://resources/js/i18n_template2.js"></script>
129 </body> 130 </body>
130 </html> 131 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698