| OLD | NEW |
| (Empty) |
| 1 <!doctype html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <meta charset="utf-8"> | |
| 5 <title>Suggestions Internals</title> | |
| 6 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> | |
| 7 <link rel="stylesheet" href="suggestions_internals.css"> | |
| 8 <script src="chrome://resources/js/cr.js"></script> | |
| 9 <script src="chrome://resources/js/util.js"></script> | |
| 10 <script src="suggestions_internals.js"></script> | |
| 11 </head> | |
| 12 <body> | |
| 13 <div class="input-section"> | |
| 14 <form id="suggestions-form" action=""> | |
| 15 <p> | |
| 16 <input id="refresh-data" type="submit" value="Refresh data"> | |
| 17 </p> | |
| 18 <p> | |
| 19 <input id="show-discarded" type="checkbox"> | |
| 20 <label for="show-discarded">Show discarded items</label> | |
| 21 </p> | |
| 22 </form> | |
| 23 </div> | |
| 24 <div id="suggestions-debug-text"></div> | |
| 25 </body> | |
| 26 </html> | |
| OLD | NEW |