blob: a4beade74eaa433561980b736fdbfbded4b096dc (
plain)
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
|
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Autocomplete Action Predictor</title>
<link rel="stylesheet" href="autocomplete_action_predictor.css">
<script src="chrome://resources/js/util.js"></script>
<script src="chrome://predictors/autocomplete_action_predictor.js">
</script>
</head>
<body>
<div id="enabledMode" hidden>
<label>
<input id="filter" type="checkbox" disabled>
Filter zero confidences
</label>
<h2 id="countBanner"></h2>
<!-- TODO(dominich): Sorting. -->
<table id="databaseTable">
<thead>
<tr>
<th>User Text</th>
<th>URL</th>
<th>Hit Count</th>
<th>Miss Count</th>
<th>Confidence</th>
</tr>
</thead>
<tbody id="databaseTableBody">
</tbody>
</table>
</div>
<div id="disabledMode" hidden>
<p>Autocomplete Action Predictor is disabled.</p>
</div>
<script src="chrome://resources/js/jstemplate_compiled.js"></script>
</body>
</html>
|