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

Side by Side Diff: chrome/browser/resources/bookmark_manager/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 <html i18n-values="dir:textdirection"> 2 <html i18n-values="dir:textdirection">
3 <!-- 3 <!--
4 4
5 Copyright (c) 2012 The Chromium Authors. All rights reserved. 5 Copyright (c) 2012 The Chromium Authors. All rights reserved.
6 Use of this source code is governed by a BSD-style license that can be 6 Use of this source code is governed by a BSD-style license that can be
7 found in the LICENSE file. 7 found in the LICENSE file.
8 8
9 --> 9 -->
10 <head> 10 <head>
11 <meta name="google" value="notranslate"> 11 <meta name="google" value="notranslate">
12 <meta charset="utf-8"> 12 <meta charset="utf-8">
13 <title i18n-content="title"></title> 13 <title i18n-content="title"></title>
14 14
15 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
15 <link rel="stylesheet" href="chrome://resources/css/list.css"> 16 <link rel="stylesheet" href="chrome://resources/css/list.css">
16 <link rel="stylesheet" href="chrome://resources/css/tree.css"> 17 <link rel="stylesheet" href="chrome://resources/css/tree.css">
17 <link rel="stylesheet" href="chrome://resources/css/menu.css"> 18 <link rel="stylesheet" href="chrome://resources/css/menu.css">
18 <link rel="stylesheet" href="chrome://resources/css/menu_button.css"> 19 <link rel="stylesheet" href="chrome://resources/css/menu_button.css">
19 <link rel="stylesheet" href="chrome://resources/css/widgets.css"> 20 <link rel="stylesheet" href="chrome://resources/css/widgets.css">
20 <link rel="stylesheet" href="css/bmm.css"> 21 <link rel="stylesheet" href="css/bmm.css">
21 22
22 <script src="chrome://resources/css/tree.css.js"></script> 23 <script src="chrome://resources/css/tree.css.js"></script>
23 <script src="css/bmm.css.js"></script> 24 <script src="css/bmm.css.js"></script>
24 <script src="chrome://resources/js/event_tracker.js"></script> 25 <script src="chrome://resources/js/event_tracker.js"></script>
(...skipping 21 matching lines...) Expand all
46 47
47 <script src="chrome://resources/js/i18n_template_no_process.js"></script> 48 <script src="chrome://resources/js/i18n_template_no_process.js"></script>
48 <script src="chrome://resources/js/load_time_data.js"></script> 49 <script src="chrome://resources/js/load_time_data.js"></script>
49 <script src="chrome://resources/js/util.js"></script> 50 <script src="chrome://resources/js/util.js"></script>
50 51
51 <script src="js/bmm.js"></script> 52 <script src="js/bmm.js"></script>
52 <script src="js/bmm/bookmark_list.js"></script> 53 <script src="js/bmm/bookmark_list.js"></script>
53 <script src="js/bmm/bookmark_tree.js"></script> 54 <script src="js/bmm/bookmark_tree.js"></script>
54 <script src="js/dnd.js"></script> 55 <script src="js/dnd.js"></script>
55 </head> 56 </head>
56 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 57 <body>
57 58
58 <header> 59 <header>
59 <h1 i18n-content="title"></h1> 60 <h1 i18n-content="title"></h1>
60 <form> 61 <form>
61 <input type="search" id="term" i18n-values="placeholder:search_button" 62 <input type="search" id="term" i18n-values="placeholder:search_button"
62 autofocus incremental> 63 autofocus incremental>
63 </form> 64 </form>
64 </header> 65 </header>
65 66
66 <div class="main"> 67 <div class="main">
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 <button command="#delete-command"></button> 197 <button command="#delete-command"></button>
197 <button command="#undo-delete-command"></button> 198 <button command="#undo-delete-command"></button>
198 <hr> 199 <hr>
199 <button command="#add-new-bookmark-command"></button> 200 <button command="#add-new-bookmark-command"></button>
200 <button command="#new-folder-command"></button> 201 <button command="#new-folder-command"></button>
201 </menu> 202 </menu>
202 203
203 <script src="js/main.js"></script> 204 <script src="js/main.js"></script>
204 </body> 205 </body>
205 </html> 206 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698