Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(49)

Side by Side Diff: chrome/browser/resources/omnibox/omnibox.html

Issue 12081002: about:omnibox - add "in keyword mode" checkbox (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: forth -> fourth Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/resources/omnibox/omnibox.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title>Omnibox Debug Page</title> 5 <title>Omnibox Debug Page</title>
6 <link rel="stylesheet" href="omnibox.css"> 6 <link rel="stylesheet" href="omnibox.css">
7 <script src="chrome://resources/js/cr.js"></script> 7 <script src="chrome://resources/js/cr.js"></script>
8 <script src="chrome://resources/js/util.js"></script> 8 <script src="chrome://resources/js/util.js"></script>
9 <script src="omnibox.js"></script> 9 <script src="omnibox.js"></script>
10 </head> 10 </head>
11 <body> 11 <body>
12 <div class="input-section"> 12 <div class="input-section">
13 <form id="omnibox-input-form" action=""> 13 <form id="omnibox-input-form" action="">
14 <p> 14 <p>
15 Enter omnibox input text: 15 Enter omnibox input text:
16 <input id="input-text" type="text" size="40" autofocus> 16 <input id="input-text" type="text" size="40" autofocus>
17 <input type="submit"> 17 <input type="submit">
18 </p> 18 </p>
19 <p>Input parameters:</p> 19 <p>Input parameters:</p>
20 <p> 20 <p>
21 <label> 21 <label>
22 <input id="prevent-inline-autocomplete" type="checkbox"> 22 <input id="prevent-inline-autocomplete" type="checkbox">
23 Prevent inline autocomplete 23 Prevent inline autocomplete
24 </label> 24 </label>
25 </p> 25 </p>
26 <p>
27 <label>
28 <input id="prefer-keyword" type="checkbox">
29 In keyword mode
30 </label>
31 </p>
26 <p>Display parameters:</p> 32 <p>Display parameters:</p>
27 <p> 33 <p>
28 <label> 34 <label>
29 <input id="show-incomplete-results" type="checkbox"> 35 <input id="show-incomplete-results" type="checkbox">
30 Show incomplete results 36 Show incomplete results
31 </label> 37 </label>
32 </p> 38 </p>
33 <p> 39 <p>
34 <label> 40 <label>
35 <input id="show-details" type="checkbox"> 41 <input id="show-details" type="checkbox">
36 Show all details 42 Show all details
37 </label> 43 </label>
38 </p> 44 </p>
39 <p> 45 <p>
40 <label> 46 <label>
41 <input id="show-all-providers" type="checkbox"> 47 <input id="show-all-providers" type="checkbox">
42 Show results per provider, not just merged results 48 Show results per provider, not just merged results
43 </label> 49 </label>
44 </p> 50 </p>
45 </form> 51 </form>
46 </div> 52 </div>
47 <div id="omnibox-debug-text"></div> 53 <div id="omnibox-debug-text"></div>
48 </body> 54 </body>
49 </html> 55 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/omnibox/omnibox.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698