-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcorrelations.html
42 lines (42 loc) · 1.34 KB
/
correlations.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
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Signature Correlations</title>
<link rel="stylesheet" href="style.css" />
<script
src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"
integrity="sha256-dsOXGNHAo/syFnazt+KTBsCQeRmlcW1XKL0bCK4Baec="
crossorigin="anonymous"
></script>
</head>
<body>
<script src="correlations.js" type="text/javascript"></script>
<script src="correlations_page.js" type="text/javascript"></script>
<span id="date" style="font-size: xx-small"></span>
<select name="product" id="product">
<option selected>Firefox</option>
<option>FennecAndroid</option>
</select>
<select name="channel" id="channel">
<option selected>release</option>
<option>beta</option>
<option>nightly</option>
<option>esr</option>
</select>
<input
type="text"
name="signature"
id="signature"
placeholder="Signature..."
/>
<button id="signatureButton">Get correlations</button>
<p>
<a id="crash_stats_link" href="https://crash-stats.mozilla.org/"
>Correlation results are now directly on crash-stats.</a
>
</p>
<pre id="correlations_text"></pre>
<svg id="correlations_image" width="1200" height="900"></svg>
</body>
</html>