blob: df2c0acff1f7340e2153887be3ecdb78406ae21e (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
<!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>Input parameters:</p>
<p>
<label>
<input id="prevent-inline-autocomplete" type="checkbox">
Prevent inline autocomplete
</label>
</p>
<p>
<label>
<input id="prefer-keyword" type="checkbox">
In keyword mode
</label>
</p>
<p>
Current page context:
<select id="page-classification">
<option value="0">Invalid spec</option>
<option value="1">(OBSOLETE) new tab page</option>
<option value="2">about:blank</option>
<option value="3">user's home page</option>
<option value="4">arbitrary URL</option>
<option value="6">search result page doing search term replacement</option>
<option value="9">search result page not doing search term replacement</option>
<option value="7" selected>new tab page with focus in omnibox</option>
<option value="8">new tab page with focus in fakebox</option>
</select>
</p>
<p>Display parameters:</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>
|