• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<!-- =============== Events Waterfall View ================= -->
2<div id=waterfall-view-tab-content class=content-box>
3  <div>
4    <div id=waterfall-view-controls>
5      Start Time: <input id=waterfall-view-start-input type=number min=0 value=0>
6      End Time: <input id=waterfall-view-end-input type=number min=0>
7      <input id=waterfall-view-adjust-to-window type=button value="Fit Range in Window">
8    </div>
9    <p>
10    <!-- Table that displays time bars -->
11    <table id=waterfall-view-time-bar-table>
12      <thead>
13      <tr id=waterfall-view-table-header>
14        <td id=waterfall-view-time-scale-labels></td>
15      </tr>
16      </thead>
17      <!-- Events Waterfall table body: This is where request rows go into -->
18      <tbody id=waterfall-view-time-bar-tbody></tbody>
19    </table>
20    <!-- Fixed table that contains the id and url information. -->
21    <table id=waterfall-view-information-table>
22      <thead id=waterfall-view-information-thead>
23        <tr>
24          <td class=waterfall-view-id-cell id=waterfall-view-id-header>ID</td>
25          <td class=waterfall-view-url-cell id=waterfall-view-url-header>URL</td>
26        </tr>
27      </thead>
28      <tbody id=waterfall-view-information-tbody></tbody>
29    </table>
30  </div>
31</div>
32