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

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

Issue 9289028: Make chrome://omnibox/ be able to report per-provider matches. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove friend. Created 8 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
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="omnibox.js"></script> 8 <script src="omnibox.js"></script>
9 </head> 9 </head>
10 <body> 10 <body>
11 <div class="input-section"> 11 <div class="input-section">
12 <form id="omnibox-input-form" action=""> 12 <form id="omnibox-input-form" action="">
13 <p> 13 <p>
14 Enter omnibox input text: 14 Enter omnibox input text:
15 <input id="input-text" type="text" size="40" autofocus> 15 <input id="input-text" type="text" size="40" autofocus>
16 <input type="submit"> 16 <input type="submit">
17 </p> 17 </p>
18 <p> 18 <p>
19 <label> 19 <label>
20 <input id="show-incomplete-results" type="checkbox"> 20 <input id="show-incomplete-results" type="checkbox">
21 Show incomplete results 21 Show incomplete results
22 </label> 22 </label>
23 </p> 23 </p>
24 <p> 24 <p>
25 <label> 25 <label>
26 <input id="show-details" type="checkbox"> 26 <input id="show-details" type="checkbox">
27 Show all details 27 Show all details
28 </label> 28 </label>
29 </p> 29 </p>
30 <p>
31 <label>
32 <input id="show-all-providers" type="checkbox">
33 Show results per provider, not just merged results
34 </label>
35 </p>
30 </form> 36 </form>
31 </div> 37 </div>
32 <div id="omnibox-debug-text"></div> 38 <div id="omnibox-debug-text"></div>
33 </body> 39 </body>
34 </html> 40 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698