summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/predictors/resource_prefetch_predictor.html
blob: 36903fa4c6e5e49302c023813bbc053bad839f73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<div id='rpp_enabled'>
  <tabbox id="rpp_data">
    <tabs>
      <tab>URL Table Cache</tab>
      <tab>Host Table Cache</tab>
    </tabs>
    <tabpanels>
      <tabpanel>
        <table id="">
          <thead>
            <tr>
              <th>Main Frame Url</th>
              <th>Resource Url</th>
              <th>Resource Type</th>
              <th>Num Hits</th>
              <th>Num Misses</th>
              <th>Consec Misses</th>
              <th>Average Position</th>
              <th>Score</th>
            </tr>
          </thead>
          <tbody id="rpp_url_body">
          </tbody>
        </table>
      </tabpanel>
      <tabpanel>
        <table id="">
          <thead>
            <tr>
              <th>Host</th>
              <th>Resource Url</th>
              <th>Resource Type</th>
              <th>Num Hits</th>
              <th>Num Misses</th>
              <th>Consec Misses</th>
              <th>Average Position</th>
              <th>Score</th>
            </tr>
          </thead>
          <tbody id="rpp_host_body">
          </tbody>
        </table>
      </tabpanel>
    </tabpanels>
  </tabbox>
</div>
<div id='rpp_disabled'>
  Resource prefetch prediction is disabled.
</div>