35 строки
1012 B
HTML
35 строки
1012 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<title>Signature Re-ranking</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<script src="correlations.js" type="text/javascript"></script>
|
|
<script src="rerank.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>beta</option>
|
|
<option>aurora</option>
|
|
<option>nightly</option>
|
|
</select>
|
|
<input type="text" name="signature" id="signature" placeholder="Signature...">
|
|
<button id="signatureButton">Analyze</button>
|
|
<pre id="rerank_text"></pre>
|
|
<table id="rerank_table">
|
|
<tr>
|
|
<th>Property</th>
|
|
<th>Percentage in crash reports</th>
|
|
<th>Percentage in "<span id="channel_from"></span>"</th>
|
|
<th>Percentage in "release"</th>
|
|
<th>Ratio</th>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|