home *** CD-ROM | disk | FTP | other *** search
/ Freelog 115 / FreelogNo115-MaiJuin2013.iso / Internet / AvantBrowser / asetup.exe / _data / webkit / chrome.dll / 0 / BINDATA / 557 < prev    next >
Encoding:
Text File  |  2013-04-03  |  3.8 KB  |  174 lines

  1. <!DOCTYPE HTML>
  2. <html i18n-values="dir:textdirection;">
  3. <head>
  4.   <title>Predictors</title>
  5.   <link rel="stylesheet" href="chrome://resources/css/list.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.     /*
  11.  * Copyright (c) 2012 The Chromium Authors. All rights reserved.
  12.  * Use of this source code is governed by a BSD-style license that can be
  13.  * found in the LICENSE file.
  14.  */
  15.  
  16. body {
  17.   margin: 20px;
  18. }
  19.  
  20. #countBanner {
  21.   background-color: rgb(235, 239, 250);
  22.   border: 1px solid rgb(187, 187, 187);
  23.   border-radius: 2px;
  24.   font-size: 100%;
  25.   padding: 4px;
  26. }
  27.  
  28. table {
  29.   background-color: white;
  30. }
  31.  
  32. thead tr {
  33.   background-color: rgb(235, 250, 239);
  34. }
  35.  
  36. th {
  37.   border-color: gray;
  38.   border-style: solid;
  39.   border-width: 1px;
  40.   padding: 3px;
  41.   white-space: nowrap;
  42. }
  43.  
  44. td {
  45.   border-color: lightgray;
  46.   border-style: solid;
  47.   border-width: 1px;
  48.   padding: 3px;
  49. }
  50.  
  51. tbody > td:first-child {
  52.   white-space: nowrap;
  53. }
  54.  
  55. #disabledMode h2 {
  56.   color: rgb(141, 51, 42);
  57.   font-size: 125%;
  58. }
  59.  
  60. tr.action-prerender td {
  61.   background-color: rgb(0, 215, 0);
  62. }
  63.  
  64. tr.action-preconnect td {
  65.   background-color: rgb(255, 215, 0);
  66. }
  67.  
  68. tr.action-none td {
  69.   background-color: rgb(215, 215, 215);
  70. }
  71.  
  72.   </style>
  73.  
  74.   <!-- List stuff. -->
  75.   <script src="chrome://resources/js/cr.js"></script>
  76.   <script src="chrome://resources/js/cr/ui.js"></script>
  77.   <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script>
  78.   <script src="chrome://resources/js/cr/ui/tabs.js"></script>
  79.   <script src="chrome://resources/js/util.js"></script>
  80. </head>
  81.  
  82. <body>
  83.   <tabbox id="predictor-page">
  84.     <tabs>
  85.       <tab>Autocomplete Action Predictor</tab>
  86.       <tab>Resource Prefetch Predictor</tab>
  87.     </tabs>
  88.     <tabpanels>
  89.       <tabpanel>
  90.         <div id="autocompleteActionPredictorEnabledMode" hidden>
  91.   <label>
  92.     <input id="filter" type="checkbox" disabled>
  93.     Filter zero confidences
  94.   </label>
  95.   <h2 id="countBanner"></h2>
  96.   <!-- TODO(dominich): Sorting. -->
  97.   <table id="databaseTable">
  98.     <thead>
  99.       <tr>
  100.         <th>User Text</th>
  101.         <th>URL</th>
  102.         <th>Hit Count</th>
  103.         <th>Miss Count</th>
  104.         <th>Confidence</th>
  105.       </tr>
  106.     </thead>
  107.     <tbody id="databaseTableBody">
  108.     </tbody>
  109.   </table>
  110. </div>
  111. <div id="autocompleteActionPredictorDisabledMode" hidden>
  112.   <p>Autocomplete Action Predictor is disabled.</p>
  113. </div>
  114.  
  115.       </tabpanel>
  116.       <tabpanel>
  117.         <div id='rpp_enabled'>
  118.   <tabbox id="rpp_data">
  119.     <tabs>
  120.       <tab>URL Table Cache</tab>
  121.       <tab>Host Table Cache</tab>
  122.     </tabs>
  123.     <tabpanels>
  124.       <tabpanel>
  125.         <table id="">
  126.           <thead>
  127.             <tr>
  128.               <th>Main Frame Url</th>
  129.               <th>Resource Url</th>
  130.               <th>Resource Type</th>
  131.               <th>Num Hits</th>
  132.               <th>Num Misses</th>
  133.               <th>Consec Misses</th>
  134.               <th>Average Position</th>
  135.               <th>Score</th>
  136.             </tr>
  137.           </thead>
  138.           <tbody id="rpp_url_body">
  139.           </tbody>
  140.         </table>
  141.       </tabpanel>
  142.       <tabpanel>
  143.         <table id="">
  144.           <thead>
  145.             <tr>
  146.               <th>Host</th>
  147.               <th>Resource Url</th>
  148.               <th>Resource Type</th>
  149.               <th>Num Hits</th>
  150.               <th>Num Misses</th>
  151.               <th>Consec Misses</th>
  152.               <th>Average Position</th>
  153.               <th>Score</th>
  154.             </tr>
  155.           </thead>
  156.           <tbody id="rpp_host_body">
  157.           </tbody>
  158.         </table>
  159.       </tabpanel>
  160.     </tabpanels>
  161.   </tabbox>
  162. </div>
  163. <div id='rpp_disabled'>
  164.   Resource prefetch prediction is disabled.
  165. </div>
  166.  
  167.       </tabpanel>
  168.     </tabpanels>
  169.   </tabbox>
  170.   <script src="chrome://resources/js/jstemplate_compiled.js"></script>
  171.   <script src="chrome://predictors/predictors.js"></script>
  172. </body>
  173. </html>
  174.