| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE HTML> | |
| 2 <html> | |
| 3 <head> | |
| 4 <meta charset="utf-8"> | |
| 5 <title>Autocomplete Action Predictor</title> | |
| 6 <link rel="stylesheet" href="autocomplete_action_predictor.css"> | |
| 7 <script src="chrome://resources/js/util.js"></script> | |
| 8 <script src="chrome://predictors/autocomplete_action_predictor.js"> | |
| 9 </script> | |
| 10 </head> | |
| 11 <body> | |
| 12 <div id="enabledMode" hidden> | |
| 13 <label> | |
| 14 <input id="filter" type="checkbox" disabled> | |
| 15 Filter zero confidences | |
| 16 </label> | |
| 17 <h2 id="countBanner"></h2> | |
| 18 <!-- TODO(dominich): Sorting. --> | |
| 19 <table id="databaseTable"> | |
| 20 <thead> | |
| 21 <tr> | |
| 22 <th>User Text</th> | |
| 23 <th>URL</th> | |
| 24 <th>Hit Count</th> | |
| 25 <th>Miss Count</th> | |
| 26 <th>Confidence</th> | |
| 27 </tr> | |
| 28 </thead> | |
| 29 <tbody id="databaseTableBody"> | |
| 30 </tbody> | |
| 31 </table> | |
| 32 </div> | |
| 33 <div id="disabledMode" hidden> | |
| 34 <p>Autocomplete Action Predictor is disabled.</p> | |
| 35 </div> | |
| 36 <script src="chrome://resources/js/jstemplate_compiled.js"></script> | |
| 37 </body> | |
| 38 </html> | |
| OLD | NEW |