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

Side by Side Diff: chrome/browser/resources/profiler/profiler.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 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
5 <script src="profiler.js"></script> 6 <script src="profiler.js"></script>
6 <script src="chrome://resources/js/util.js"></script> 7 <script src="chrome://resources/js/util.js"></script>
7 8
8 <style> 9 <style>
9 10
10 body { 11 body {
11 font-family: sans-serif;
12 font-size: 80%; 12 font-size: 80%;
13 } 13 }
14 14
15 /* 15 /*
16 * The following styles are for a TABLE that uses a thin collapsed border, and 16 * The following styles are for a TABLE that uses a thin collapsed border, and
17 * has a blue heading. When you hover over rows, they turn yellow. 17 * has a blue heading. When you hover over rows, they turn yellow.
18 */ 18 */
19 table.results-table { 19 table.results-table {
20 border-collapse:collapse; 20 border-collapse:collapse;
21 } 21 }
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 147
148 <div id='results-div'></div> 148 <div id='results-div'></div>
149 149
150 <!-- TODO(eroman): This should only be a short-lived solution, 150 <!-- TODO(eroman): This should only be a short-lived solution,
151 which will eventually be superceded by snapshotting --> 151 which will eventually be superceded by snapshotting -->
152 <span id=reset-data-link class=pseudo-link>[Reset tracking data]</span> 152 <span id=reset-data-link class=pseudo-link>[Reset tracking data]</span>
153 153
154 <a style="display: none" id="download-anchor" download="profile.json"></a> 154 <a style="display: none" id="download-anchor" download="profile.json"></a>
155 </body> 155 </body>
156 </html> 156 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698