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