OLD | NEW |
| (Empty) |
1 <!-- | |
2 Copyright 2013 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 <!DOCTYPE html> | |
7 <html i18n-values="dir:textdirection"> | |
8 <head> | |
9 <meta charset="utf-8"> | |
10 <title i18n-content="Media Internals"></title> | |
11 <link rel="stylesheet" href="media_internals.css"> | |
12 <script src="chrome://resources/js/cr.js"></script> | |
13 </head> | |
14 | |
15 <body> | |
16 <div id="container"> | |
17 <div id="list-wrapper"> | |
18 <div id="player-list-wrapper"> | |
19 <h2>Players</h2> | |
20 <ul id="player-list"></ul> | |
21 </div> | |
22 <div id="audio-stream-list-wrapper"> | |
23 <h2>Audio Streams</h2> | |
24 <ul id="audio-stream-list"></ul> | |
25 </div> | |
26 </div> | |
27 <div id="property-wrapper"> | |
28 <h2>Properties</h2> | |
29 <table id="property-table"> | |
30 <thead> | |
31 <tr> | |
32 <td>Property Name</td> <td>Value</td> | |
33 </tr> | |
34 </thead> | |
35 </table> | |
36 <ul id="graphs"></ul> | |
37 </div> | |
38 <div id="log-wrapper"> | |
39 <h2> | |
40 Log | |
41 </h2> | |
42 <table id="log"> | |
43 <thead> | |
44 <tr> | |
45 <td>Timestamp</td> | |
46 <td>Property</td> | |
47 <td>Value</td> | |
48 </tr> | |
49 </thead> | |
50 <tbody></tbody> | |
51 </table> | |
52 </div> | |
53 </div> | |
54 <script src="chrome://media-internals/media_internals.js"></script> | |
55 </body> | |
56 </html> | |
OLD | NEW |