-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (48 loc) · 1.58 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
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CA Telemetry Dashboard</title>
<link rel="stylesheet" type="text/css" href="index.css">
<script src="https://telemetry.mozilla.org/v2/telemetry.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script src="https://code.highcharts.com/stock/highstock.js"></script>
<script src="index.js" type="application/javascript;version=1.7"></script>
</head>
<body onclick="maybeCloseChart(event);">
<div id="timeseries" class="absolute"></div>
<div id="popup" class="absolute"></div>
<table>
<tr>
<td>
<table id="legend">
<tr class="noFailures">
<td>No pinning failures were observed for the CA</td>
</tr>
<tr class="unusedCA">
<td>The CA has never been observed</td>
</tr>
<tr class="someFailures">
<td>Verification successes and pinning failures have been observed</td>
</tr>
<tr class="onlyFailures">
<td>Only pinning failures have been observed</td>
</tr>
</table>
</td>
<td><form id="versions" onchange="updateTable();"></form></td>
</tr>
</table>
<table>
<thead>
<tr onclick="handleSortClick(event);">
<th id="telemetryIDSort">Telemetry ID</th>
<th id="nameSort">CA Name</th>
<th id="getEnabledSuccessesSort">Successful Verifications</th>
<th id="getEnabledFailuresSort">Pinning Failures</th>
</tr>
</thead>
<tbody id="table"></tbody>
</table>
</body>
</html>