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

Side by Side Diff: chrome/browser/resources/translate_internals/translate_internals.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 <!-- 3 <!--
4 Copyright 2013 The Chromium Authors. All rights reserved. 4 Copyright 2013 The Chromium Authors. All rights reserved.
5 Use of this source code is governed by a BSD-style license that can be 5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file. 6 found in the LICENSE file.
7 --> 7 -->
8 <head> 8 <head>
9 <meta charset="utf-8"> 9 <meta charset="utf-8">
10 <title>Translate Internals</title> 10 <title>Translate Internals</title>
11 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
11 <link rel="stylesheet" href="chrome://resources/css/tabs.css"> 12 <link rel="stylesheet" href="chrome://resources/css/tabs.css">
12 <link rel="stylesheet" href="./translate_internals.css"> 13 <link rel="stylesheet" href="./translate_internals.css">
13 <script src="chrome://resources/js/util.js"></script> 14 <script src="chrome://resources/js/util.js"></script>
14 <script src="chrome://resources/js/cr.js"></script> 15 <script src="chrome://resources/js/cr.js"></script>
15 <script src="chrome://resources/js/cr/event_target.js"></script> 16 <script src="chrome://resources/js/cr/event_target.js"></script>
16 <script src="chrome://resources/js/cr/ui.js"></script> 17 <script src="chrome://resources/js/cr/ui.js"></script>
17 <script src="chrome://resources/js/cr/ui/tabs.js"></script> 18 <script src="chrome://resources/js/cr/ui/tabs.js"></script>
18 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script> 19 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script>
19 <script src="chrome://resources/js/load_time_data.js"></script> 20 <script src="chrome://resources/js/load_time_data.js"></script>
20 <script src="/strings.js"></script> 21 <script src="/strings.js"></script>
21 <script src="./translate_internals.js"></script> 22 <script src="./translate_internals.js"></script>
22 </head> 23 </head>
23 24
24 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 25 <body>
25 26
26 <tabbox> 27 <tabbox>
27 <tabs> 28 <tabs>
28 <tab>Prefs</tab> 29 <tab>Prefs</tab>
29 <tab>Detection Logs</tab> 30 <tab>Detection Logs</tab>
30 <tab>Error Logs</tab> 31 <tab>Error Logs</tab>
31 <tab>Event Logs</tab> 32 <tab>Event Logs</tab>
32 </tabs> 33 </tabs>
33 <tabpanels> 34 <tabpanels>
34 35
(...skipping 21 matching lines...) Expand all
56 </div> 57 </div>
57 </tabpanel> 58 </tabpanel>
58 59
59 </tabpanels> 60 </tabpanels>
60 </tabbox> 61 </tabbox>
61 62
62 <script src="chrome://resources/js/i18n_template2.js"></script> 63 <script src="chrome://resources/js/i18n_template2.js"></script>
63 </body> 64 </body>
64 65
65 </html> 66 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698