1 <!DOCTYPE HTML> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>Omnibox Debug Page</title> 6 <link rel="stylesheet" href="omnibox.css"> 7 <script src="chrome://resources/js/cr.js"></script> 8 <script src="chrome://resources/js/util.js"></script> 9 <script src="omnibox.js"></script> 10 </head> 11 <body> 12 <div class="input-section"> 13 <form id="omnibox-input-form" action=""> 14 <p> 15 Enter omnibox input text: 16 <input id="input-text" type="text" size="40" autofocus> 17 <input type="submit"> 18 </p> 19 <p>Input parameters:</p> 20 <p> 21 <label> 22 <input id="prevent-inline-autocomplete" type="checkbox"> 23 Prevent inline autocomplete 24 </label> 25 </p> 26 <p> 27 <label> 28 <input id="prefer-keyword" type="checkbox"> 29 In keyword mode 30 </label> 31 </p> 32 <p>Display parameters:</p> 33 <p> 34 <label> 35 <input id="show-incomplete-results" type="checkbox"> 36 Show incomplete results 37 </label> 38 </p> 39 <p> 40 <label> 41 <input id="show-details" type="checkbox"> 42 Show all details 43 </label> 44 </p> 45 <p> 46 <label> 47 <input id="show-all-providers" type="checkbox"> 48 Show results per provider, not just merged results 49 </label> 50 </p> 51 </form> 52 </div> 53 <div id="omnibox-debug-text"></div> 54 </body> 55 </html> 56