| OLD | NEW |
| 1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <html> | 2 <html i18n-values="dir:textdirection;"> |
| 3 <head> | 3 <head> |
| 4 <meta charset="utf-8"> | 4 <title>Predictors</title> |
| 5 <title>Autocomplete Action Predictor</title> | 5 <link rel="stylesheet" href="chrome://resources/css/list.css"> |
| 6 <link rel="stylesheet" href="predictors.css"> | 6 <link rel="stylesheet" href="chrome://resources/css/tabs.css"> |
| 7 <link rel="stylesheet" href="chrome://resources/css/tree.css"> |
| 8 |
| 9 <style> |
| 10 <include src="predictors.css"> |
| 11 </style> |
| 12 |
| 13 <!-- List stuff. --> |
| 14 <script src="chrome://resources/js/cr.js"></script> |
| 15 <script src="chrome://resources/js/cr/ui.js"></script> |
| 16 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script> |
| 17 <script src="chrome://resources/js/cr/ui/tabs.js"></script> |
| 7 <script src="chrome://resources/js/util.js"></script> | 18 <script src="chrome://resources/js/util.js"></script> |
| 8 <script src="chrome://predictors/predictors.js"> | |
| 9 </script> | |
| 10 </head> | 19 </head> |
| 20 |
| 11 <body> | 21 <body> |
| 12 <div id="enabledMode" hidden> | 22 <tabbox id="predictor-page"> |
| 13 <label> | 23 <tabs> |
| 14 <input id="filter" type="checkbox" disabled> | 24 <tab>Autocomplete Action Predictor</tab> |
| 15 Filter zero confidences | 25 <tab>Resource Prefetch Predictor</tab> |
| 16 </label> | 26 </tabs> |
| 17 <h2 id="countBanner"></h2> | 27 <tabpanels> |
| 18 <!-- TODO(dominich): Sorting. --> | 28 <tabpanel> |
| 19 <table id="databaseTable"> | 29 <include src="autocomplete_action_predictor.html" /> |
| 20 <thead> | 30 </tabpanel> |
| 21 <tr> | 31 <tabpanel> |
| 22 <th>User Text</th> | 32 <include src="resource_prefetch_predictor.html" /> |
| 23 <th>URL</th> | 33 </tabpanel> |
| 24 <th>Hit Count</th> | 34 </tabpanels> |
| 25 <th>Miss Count</th> | 35 </tabbox> |
| 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> | 36 <script src="chrome://resources/js/jstemplate_compiled.js"></script> |
| 37 <script src="chrome://predictors/predictors.js"></script> |
| 37 </body> | 38 </body> |
| 38 </html> | 39 </html> |
| OLD | NEW |