1 <!-- 2 Copyright (c) 2012 The Chromium Authors. All rights reserved. 3 Use of this source code is governed by a BSD-style license that can be 4 found 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> 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 </select> 26 </span> 27 </div> 28 29 <!-- Status bar at top of screen when capturing is stopped --> 30 <div id=halted-status-view style="display:none"> 31 Capturing halted 32 </div> 33 34 <!-- Status bar at top of screen when displaying a loaded dump file --> 35 <div id=loaded-status-view style="display:none"> 36 Displaying log file (<span id=loaded-status-view-dump-file-name></span>) 37 </div> 38