| OLD | NEW | 
|   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> | 
| (...skipping 11 matching lines...) Expand all  Loading... | 
|  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> |  26       <p> | 
|  27         <label> |  27         <label> | 
|  28           <input id="prefer-keyword" type="checkbox"> |  28           <input id="prefer-keyword" type="checkbox"> | 
|  29           In keyword mode |  29           In keyword mode | 
|  30         </label> |  30         </label> | 
|  31       </p> |  31       </p> | 
 |  32       <p> | 
 |  33         Current page context: | 
 |  34         <select id="page-classification"> | 
 |  35           <option value="0">Invalid spec</option> | 
 |  36           <option value="1">(OBSOLETE) new tab page</option> | 
 |  37           <option value="2">about:blank</option> | 
 |  38           <option value="3">user's home page</option> | 
 |  39           <option value="4">arbitrary URL</option> | 
 |  40           <option value="6">search result page doing search term replacement</op
    tion> | 
 |  41           <option value="9">search result page not doing search term replacement
    </option> | 
 |  42           <option value="7" selected>new tab page with focus in omnibox</option> | 
 |  43           <option value="8">new tab page with focus in fakebox</option> | 
 |  44         </select> | 
 |  45       </p> | 
|  32       <p>Display parameters:</p> |  46       <p>Display parameters:</p> | 
|  33       <p> |  47       <p> | 
|  34         <label> |  48         <label> | 
|  35           <input id="show-incomplete-results" type="checkbox"> |  49           <input id="show-incomplete-results" type="checkbox"> | 
|  36           Show incomplete results |  50           Show incomplete results | 
|  37         </label> |  51         </label> | 
|  38       </p> |  52       </p> | 
|  39       <p> |  53       <p> | 
|  40         <label> |  54         <label> | 
|  41           <input id="show-details" type="checkbox"> |  55           <input id="show-details" type="checkbox"> | 
|  42           Show all details |  56           Show all details | 
|  43         </label> |  57         </label> | 
|  44       </p> |  58       </p> | 
|  45       <p> |  59       <p> | 
|  46         <label> |  60         <label> | 
|  47           <input id="show-all-providers" type="checkbox"> |  61           <input id="show-all-providers" type="checkbox"> | 
|  48           Show results per provider, not just merged results |  62           Show results per provider, not just merged results | 
|  49         </label> |  63         </label> | 
|  50       </p> |  64       </p> | 
|  51     </form> |  65     </form> | 
|  52   </div> |  66   </div> | 
|  53   <div id="omnibox-debug-text"></div> |  67   <div id="omnibox-debug-text"></div> | 
|  54 </body> |  68 </body> | 
|  55 </html> |  69 </html> | 
| OLD | NEW |