blob: 6f11c220a9ea82e727e25287beba731e4f776445 (
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
39
40
41
|
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Omnibox Debug Page</title>
<link rel="stylesheet" href="omnibox.css">
<script src="chrome://resources/js/cr.js"></script>
<script src="chrome://resources/js/util.js"></script>
<script src="omnibox.js"></script>
</head>
<body>
<div class="input-section">
<form id="omnibox-input-form" action="">
<p>
Enter omnibox input text:
<input id="input-text" type="text" size="40" autofocus>
<input type="submit">
</p>
<p>
<label>
<input id="show-incomplete-results" type="checkbox">
Show incomplete results
</label>
</p>
<p>
<label>
<input id="show-details" type="checkbox">
Show all details
</label>
</p>
<p>
<label>
<input id="show-all-providers" type="checkbox">
Show results per provider, not just merged results
</label>
</p>
</form>
</div>
<div id="omnibox-debug-text"></div>
</body>
</html>
|