summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/tracing.html
blob: 9c98bf05e5e191ef45cbed6fa56adacdc2147b8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE HTML>
<html>
<!--
Copyright (c) 2010 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<head i18n-values="dir:textdirection;">
<style>
* {
  box-sizing: border-box;
  -webkit-user-select: none;
}

html, body, #main-tabs {
  height: 100%;
}

body {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  cursor: default;
  font-family: sans-serif;
  padding: 0;
  margin: 0;
}

#tracing-title {
  margin: 1px;
}

</style>
<link rel="stylesheet" href="tracing/overlay.css">
<link rel="stylesheet" href="tracing/profiling_view.css">
<link rel="stylesheet" href="tracing/timeline_analysis.css">
<link rel="stylesheet" href="tracing/timeline_view.css">
<link rel="stylesheet" href="tracing/timeline.css">
<link rel="stylesheet" href="tracing/tracing_controller.css">
<link rel="stylesheet" href="chrome://resources/css/tabs.css">
<link rel="stylesheet" href="chrome://resources/css/widgets.css">
<script src="chrome://resources/js/cr.js"></script>
<script src="chrome://resources/js/cr/event_target.js"></script>
<script src="chrome://resources/js/cr/ui.js"></script>
<script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script>
<script src="chrome://resources/js/cr/ui/tabs.js"></script>
<script src="chrome://resources/js/util.js"></script>
<script src="chrome://tracing/tracing.js"></script>
<script src="chrome://tracing/strings.js"></script>
</head>
<body>
  <div id="profiling-view"></div>
  <script src="chrome://resources/js/i18n_template.js"></script>
  <script src="chrome://resources/js/i18n_process.js"></script>
  <script src="chrome://resources/js/jstemplate_compiled.js"></script>
</body>
</html>