-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
36 lines (30 loc) · 1.07 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Trace visualization</title>
<link href="style.css" rel="stylesheet" />
<!-- Fork ribbon from https://github.com/simonwhitaker/github-fork-ribbon-css -->
<link rel="stylesheet" href="gh-fork-ribbon.css" />
<!--[if IE]>
<link rel="stylesheet" href="gh-fork-ribbon.ie.css" />
<![endif]-->
<script src="data.js"></script>
<script src="map.js"></script>
<script src="event-emitter.js"></script>
<script src="trace.js"></script>
<script src="trace-parser.js"></script>
<script src="trace-graph.js"></script>
<script src="index.js"></script>
</head>
<body>
<div class="github-fork-ribbon-wrapper right">
<div class="github-fork-ribbon">
<a href="https://github.com/rjbailey/moz-trace-graph">Fork me on GitHub</a>
</div>
</div>
<div id="visualization"></div>
<p class="rel">Related: <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=900204">bug
900204</a>, <a href="data.js">data file</a> used here.</p>
</body>
</html>