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

Side by Side Diff: chrome/browser/resources/sync_file_system_internals/main.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 <!-- 2 <!--
3 Copyright 2013 The Chromium Authors. All rights reserved. 3 Copyright 2013 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 <html i18n-values="dir:textdirection;"> 7 <html i18n-values="dir:textdirection;">
8 <meta charset="utf-8"> 8 <meta charset="utf-8">
9 <title>Sync File System Internals</title> 9 <title>Sync File System Internals</title>
10 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
10 <link rel="stylesheet" href="main.css"> 11 <link rel="stylesheet" href="main.css">
11 12
12 <script src="chrome://resources/js/util.js"></script> 13 <script src="chrome://resources/js/util.js"></script>
13 <script src="chrome://resources/js/cr.js"></script> 14 <script src="chrome://resources/js/cr.js"></script>
14 <script src="chrome://resources/js/cr/event_target.js"></script> 15 <script src="chrome://resources/js/cr/event_target.js"></script>
15 16
16 <link rel="stylesheet" href="chrome://resources/css/tabs.css"> 17 <link rel="stylesheet" href="chrome://resources/css/tabs.css">
17 <script src="chrome://resources/js/load_time_data.js"></script> 18 <script src="chrome://resources/js/load_time_data.js"></script>
18 <script src="chrome://resources/js/cr/ui.js"></script> 19 <script src="chrome://resources/js/cr/ui.js"></script>
19 <script src="chrome://resources/js/cr/ui/tabs.js"></script> 20 <script src="chrome://resources/js/cr/ui/tabs.js"></script>
20 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script> 21 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script>
21 <script src="chrome://syncfs-internals/strings.js"></script> 22 <script src="chrome://syncfs-internals/strings.js"></script>
22 <script src="chrome://syncfs-internals/utils.js"></script> 23 <script src="chrome://syncfs-internals/utils.js"></script>
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>Sync Service</tab> 29 <tab>Sync Service</tab>
29 <tab>Task Log</tab> 30 <tab>Task Log</tab>
30 <tab>Extension Statuses</tab> 31 <tab>Extension Statuses</tab>
31 <tab>File Metadata</tab> 32 <tab>File Metadata</tab>
32 <tab>Database Dump</tab> 33 <tab>Database Dump</tab>
33 </tabs> 34 </tabs>
34 <tabpanels> 35 <tabpanels>
(...skipping 11 matching lines...) Expand all
46 </tabpanel> 47 </tabpanel>
47 <tabpanel> 48 <tabpanel>
48 <include src="dump_database.html" > 49 <include src="dump_database.html" >
49 </tabpanel> 50 </tabpanel>
50 </tabpanels> 51 </tabpanels>
51 </tabbox> 52 </tabbox>
52 53
53 <script src="chrome://resources/js/i18n_template2.js"></script> 54 <script src="chrome://resources/js/i18n_template2.js"></script>
54 </body> 55 </body>
55 </html> 56 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698