• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<!--
2Copyright (c) 2012 The Chromium Authors. All rights reserved.
3Use of this source code is governed by a BSD-style license that can be
4found in the LICENSE file.
5-->
6
7<!-- Status bar at top of screen when in capture mode. -->
8<div id=capture-status-view style="display:none">
9  <span style='-webkit-flex-grow: 1'>
10    <a href='#capture' class=capture-status-view-link>capturing</a>
11    <a href='#events' class=capture-status-view-link>events
12    (<span id=capture-status-view-captured-events-count
13           title='Number of events captured to this window'></span>)</a>
14  </span>
15  <span class=capture-status-view-arrow>
16    <select id=capture-status-view-actions aria-label="Capture Actions">
17      <optgroup label="Capture">
18        <option value=stop>Stop</option>
19        <option value=reset>Reset</option>
20      </optgroup>
21      <optgroup label="Tools">
22        <option value=clear-cache>Clear cache</option>
23        <option value=flush-sockets>Flush sockets</option>
24      </optgroup>
25      <option value=switch-time-format>Switch time format</option>
26    </select>
27  </span>
28</div>
29
30<!-- Status bar at top of screen when capturing is stopped -->
31<div id=halted-status-view style="display:none">
32  Capturing halted
33</div>
34
35<!-- Status bar at top of screen when displaying a loaded dump file -->
36<div id=loaded-status-view style="display:none">
37  Displaying log file (<span id=loaded-status-view-dump-file-name></span>)
38</div>
39