| 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="omnibox.js"></script> | 9 <script src="omnibox.js"></script> |
| 9 </head> | 10 </head> |
| 10 <body> | 11 <body> |
| 11 <div class="input-section"> | 12 <div class="input-section"> |
| 12 <form id="omnibox-input-form" action=""> | 13 <form id="omnibox-input-form" action=""> |
| 13 <p> | 14 <p> |
| 14 Enter omnibox input text: | 15 Enter omnibox input text: |
| 15 <input id="input-text" type="text" size="40" autofocus> | 16 <input id="input-text" type="text" size="40" autofocus> |
| 16 <input type="submit"> | 17 <input type="submit"> |
| 17 </p> | 18 </p> |
| (...skipping 13 matching lines...) Expand all Loading... |
| 31 <label> | 32 <label> |
| 32 <input id="show-all-providers" type="checkbox"> | 33 <input id="show-all-providers" type="checkbox"> |
| 33 Show results per provider, not just merged results | 34 Show results per provider, not just merged results |
| 34 </label> | 35 </label> |
| 35 </p> | 36 </p> |
| 36 </form> | 37 </form> |
| 37 </div> | 38 </div> |
| 38 <div id="omnibox-debug-text"></div> | 39 <div id="omnibox-debug-text"></div> |
| 39 </body> | 40 </body> |
| 40 </html> | 41 </html> |
| OLD | NEW |