forked from microsoft/TypeScriptSamples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathperf.html
More file actions
45 lines (39 loc) · 717 Bytes
/
perf.html
File metadata and controls
45 lines (39 loc) · 717 Bytes
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
<!doctype html>
<html>
<head>
<script src="http://d3js.org/d3.v2.js"></script>
<script src="data.js"></script>
<style>
svg {
font-family: "Segoe UI", sans-serif;
}
.day {
stroke: #ccc;
}
.pass {
fill: rgb(0, 166, 0);
}
.fail {
fill: rgb(255, 83, 0);
}
.hashes line {
stroke: #000; stroke-width: 2;
}
.tick {
stroke: #000; stroke-width: 2;
}
.axis path {
stroke: #000; stroke-width: 2;
}
body {
font-family: 'Segoe UI';
}
</style>
</head>
<body>
<h1>Status</h1>
<div id="passchart"></div>
<h1>Compiler Performance</h1>
<div id="performanceChart"></div>
</body>
</html>