| 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>Suggestions Internals</title> | 5 <title>Suggestions Internals</title> |
| 6 <link rel="stylesheet" href="suggestions_internals.css"> | 6 <link rel="stylesheet" href="suggestions_internals.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="suggestions_internals.js"></script> | 9 <script src="suggestions_internals.js"></script> |
| 10 </head> | 10 </head> |
| 11 <body> | 11 <body> |
| 12 <div class="input-section"> | 12 <div class="input-section"> |
| 13 <form id="suggestions-form" action=""> | 13 <form id="suggestions-form" action=""> |
| 14 <p> | 14 <p> |
| 15 <input id="refresh-data" type="submit" value="Refresh data"> | 15 <input id="refresh-data" type="submit" value="Refresh data"> |
| 16 </p> | 16 </p> |
| 17 <p> | 17 <p> |
| 18 <input id="show-discarded" type="checkbox"> | 18 <input id="show-discarded" type="checkbox"> |
| 19 <label for="show-discarded">Show discarded items</label> | 19 <label for="show-discarded">Show discarded items</label> |
| 20 </p> | 20 </p> |
| 21 </form> | 21 </form> |
| 22 </div> | 22 </div> |
| 23 <div id="suggestions-debug-text"></div> | 23 <div id="suggestions-debug-text"></div> |
| 24 </body> | 24 </body> |
| 25 </html> | 25 </html> |
| OLD | NEW |