-
Notifications
You must be signed in to change notification settings - Fork 18
/
common_landings.html
47 lines (47 loc) · 1.34 KB
/
common_landings.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Find common landings between channels</title>
<script src="buildid_changeset.js" type="text/javascript"></script>
</head>
<body>
<script src="common_landings.js" type="text/javascript"></script>
<h2>Pushlog/regression range generator</h2>
<br /><br />
<h3>Nightly</h3>
<input
type="text"
name="nightly_first_affected"
id="nightly_first_affected"
placeholder="Build ID or changeset"
/>
<select name="nightly_days" id="nightly_days">
<option selected>one day</option>
<option>two days</option>
<option>three days</option>
<option>a week</option>
</select>
<br />
<a id="nightly_pushloglink"></a>
<br /><br />
<h3>Beta</h3>
<input
type="text"
name="beta_first_affected"
id="beta_first_affected"
placeholder="Version number (e.g. 51.0b9)"
/>
<select name="beta_builds" id="beta_builds">
<option selected>one build</option>
<option>two builds</option>
<option>three builds</option>
</select>
<br />
<a id="beta_pushloglink"></a>
<br /><br /><br /><br />
<button id="getCommonLandings">Find common landings</button>
<br /><br />
<div id="results"></div>
</body>
</html>