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