OLD | NEW |
1 <!DOCTYPE HTML> | |
2 <html i18n-values="dir:textdirection;"> | |
3 <!-- | 1 <!-- |
4 Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 Copyright 2013 The Chromium Authors. All rights reserved. |
5 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 |
6 found in the LICENSE file. | 4 found in the LICENSE file. |
7 --> | 5 --> |
8 <head> | 6 <!DOCTYPE html> |
9 <link rel="stylesheet" href="media_internals.css"> | 7 <html i18n-values="dir:textdirection"> |
10 <script src="chrome://resources/js/cr.js"></script> | 8 <head> |
11 <script src="chrome://resources/js/cr/ui.js"></script> | 9 <meta charset="utf-8"> |
12 <script src="chrome://resources/js/util.js"></script> | 10 <title i18n-content="Media Internals"></title> |
13 <script src="chrome://media-internals/media_internals.js"></script> | 11 <link rel="stylesheet" href="media_internals.css"> |
14 <script src="chrome://media-internals/strings.js"></script> | 12 <script src="chrome://resources/js/cr.js"></script> |
15 <title>Media Internals</title> | 13 </head> |
16 </head> | 14 |
17 <body> | 15 <body> |
18 <h2>Active media players:</h2> | 16 <div id="container"> |
19 <ul id="media-players"></ul> | 17 <div id="list-wrapper"> |
20 <h2>Active audio streams:</h2> | 18 <div id="player-list-wrapper"> |
21 <div id="audio-streams"></div> | 19 <h2>Players</h2> |
22 <h2>Cached resources:</h2> | 20 <ul id="player-list"></ul> |
23 <div id="cache-entries"></div> | 21 </div> |
24 <script src="chrome://resources/js/i18n_template.js"></script> | 22 <div id="audio-stream-list-wrapper"> |
25 <script src="chrome://resources/js/i18n_process.js"></script> | 23 <h2>Audio Streams</h2> |
26 <script src="chrome://resources/js/jstemplate_compiled.js"></script> | 24 <ul id="audio-stream-list"></ul> |
27 </body> | 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> |
28 </html> | 56 </html> |
OLD | NEW |