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

Unified 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: createTextNode -> textContent Created 8 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/omnibox/omnibox.html
diff --git a/chrome/browser/resources/omnibox/omnibox.html b/chrome/browser/resources/omnibox/omnibox.html
index e59366b43eb57e9dc81c7f126eb839fd324ad4f2..c6b08e83cd7d4088a020731eb249c15cde004579 100644
--- a/chrome/browser/resources/omnibox/omnibox.html
+++ b/chrome/browser/resources/omnibox/omnibox.html
@@ -15,18 +15,26 @@
<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>
+ <div id="omnibox-input-form-options">
arv (Not doing code reviews) 2012/01/31 20:29:05 This is kind of ugly. I'm sorry I lead you down th
Mark P 2012/01/31 20:55:34 Do you want me to go back to registering three lis
arv (Not doing code reviews) 2012/01/31 20:59:35 Yeah, js should adjust to dom, not the other way a
Mark P 2012/01/31 21:14:43 Switched back.
+ <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>
+ </div>
</form>
</div>
<div id="omnibox-debug-text"></div>

Powered by Google App Engine
This is Rietveld 408576698