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

Side by Side Diff: chrome/browser/resources/inspect/inspect.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 <!-- 3 <!--
4 Copyright (c) 2012 The Chromium Authors. All rights reserved. 4 Copyright (c) 2012 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>Inspect with Chrome Developer Tools</title> 10 <title>Inspect with Chrome Developer Tools</title>
11 11 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
12 <link rel="stylesheet" href="inspect.css"> 12 <link rel="stylesheet" href="inspect.css">
13 <script src="chrome://resources/js/util.js"></script> 13 <script src="chrome://resources/js/util.js"></script>
14 <script src="inspect.js"></script> 14 <script src="inspect.js"></script>
15 </head> 15 </head>
16 16
17 <body> 17 <body>
18 18
19 <div id="container"> 19 <div id="container">
20 <div id="navigation"> 20 <div id="navigation">
21 <div id="caption">DevTools</div> 21 <div id="caption">DevTools</div>
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 </div> 83 </div>
84 <div id="port-forwarding-config-buttons"> 84 <div id="port-forwarding-config-buttons">
85 <input id="port-forwarding-enable" type="checkbox" disabled/> 85 <input id="port-forwarding-enable" type="checkbox" disabled/>
86 <label for="port-forwarding-enable">Enable port forwarding</label> 86 <label for="port-forwarding-enable">Enable port forwarding</label>
87 <button id="port-forwarding-config-done">Done</button> 87 <button id="port-forwarding-config-done">Done</button>
88 </div> 88 </div>
89 </div> 89 </div>
90 </div> 90 </div>
91 </body> 91 </body>
92 </html> 92 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698