-
Notifications
You must be signed in to change notification settings - Fork 0
/
charts.html
52 lines (52 loc) · 2.02 KB
/
charts.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
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WebKit test resuls charts playground</title>
<script src="https://cdn.plot.ly/plotly-2.4.2.min.js"></script>
<link rel="stylesheet" type="text/css" href="charts.css" />
</head>
<body>
<script type="module" src="./charts.js"></script>
<h1>WebKit test results stats</h1>
<nav role="navigation" class="table-of-contents">
<h2>Contents</h2>
<ul>
<li><a href="#configuration">Platform data</a></li>
<li><a href="#regressions">Test suite regressions</a></li>
<li><a href="#coverage">Test suite coverage</a></li>
</ul>
</nav>
<h2 id="configuration">Configuration</h2>
<div>
<label for="bot-select">Choose a configuration:</label>
<select name="bot" id="bot-select">
<!-- FIXME Hard coded bots -->
<optgroup label="WPE">
<option value="wpe-release">WPE Release</option>
<option value="wpe-debug">WPE Debug</option>
</optgroup>
<optgroup label="GTK">
<option value="gtk-release">GTK Release Xvfb</option>
<option value="gtk-release-wayland">GTK Release Wayland</option>
<option value="gtk-release-gtk4">GTK Release GTK4</option>
<option value="gtk-debug">GTK Debug Xvfb</option>
</optgroup>
</select>
<div>
Platform: <span id="runPlatform"></span><br>
Architecture: <span id="runArch"></span><br>
Style: <span id="runStyle"></span><br>
</div>
<div>
</div>
<h2 id="regressions">Layout test regressions</h2>
<div id="regressionsChart" style="width:80%; height:480px;" class="chart"></div>
<br>
<h2 id="coverage">Layout test coverage</h2>
<div id="coverageChart" style="width:80%; height:480px;" class="chart"></div>
<br>
</body>
</html>