| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 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 <!DOCTYPE html> | 6 <!DOCTYPE html> |
| 7 <html i18n-values="dir:textdirection"> | 7 <html i18n-values="dir:textdirection"> |
| 8 <head> | 8 <head> |
| 9 <meta charset="utf-8"> | 9 <meta charset="utf-8"> |
| 10 <title i18n-content="Media Internals"></title> | 10 <title i18n-content="Media Internals"></title> |
| 11 <link rel="stylesheet" href="media_internals.css"> | 11 <link rel="stylesheet" href="media_internals.css"> |
| 12 <script src="chrome://resources/js/cr.js"></script> | 12 <script src="chrome://resources/js/cr.js"></script> |
| 13 </head> | 13 </head> |
| 14 | 14 |
| 15 <body> | 15 <body> |
| 16 <textarea id="clipboard-textarea" class="hidden"></textarea> | 16 <textarea id="clipboard-textarea" class="hiddenClipboard"></textarea> |
| 17 <div id="container"> | 17 <div id="container"> |
| 18 <div id="list-wrapper"> | 18 <div id="list-wrapper"> |
| 19 <div id="player-list-wrapper"> | 19 <div id="player-list-wrapper"> |
| 20 <h2>Players</h2> | 20 <h2>Players</h2> |
| 21 <ul id="player-list"></ul> | 21 <ul id="player-list"></ul> |
| 22 </div> | 22 </div> |
| 23 <div id="audio-stream-list-wrapper"> | 23 <div id="audio-component-list-wrapper"> |
| 24 <h2>Audio Streams</h2> | 24 <h2>Input Controllers</h2> |
| 25 <ul id="audio-stream-list"></ul> | 25 <ul id="audio-input-controller-list"></ul> |
| 26 </div> |
| 27 <div id="audio-component-list-wrapper"> |
| 28 <h2>Output Controllers</h2> |
| 29 <ul id="audio-output-controller-list"></ul> |
| 30 </div> |
| 31 <div id="audio-component-list-wrapper"> |
| 32 <h2>Output Streams</h2> |
| 33 <ul id="audio-output-stream-list"></ul> |
| 26 </div> | 34 </div> |
| 27 </div> | 35 </div> |
| 28 <div id="property-wrapper"> | 36 <div id="property-wrapper"> |
| 29 <h2>Properties <button id="copy-button">copy to clipboard</button> </h2> | 37 <h2>Properties <button id="copy-button">copy to clipboard</button> </h2> |
| 30 <table id="property-table"> | 38 <table id="property-table"> |
| 31 <thead> | 39 <thead> |
| 32 <tr> | 40 <tr> |
| 33 <td>Property Name</td> <td>Value</td> | 41 <th>Property</th> |
| 42 <th>Value</th> |
| 34 </tr> | 43 </tr> |
| 35 </thead> | 44 </thead> |
| 45 <tbody></tbody> |
| 36 </table> | 46 </table> |
| 37 <ul id="graphs"></ul> | 47 <ul id="graphs"></ul> |
| 38 </div> | 48 </div> |
| 39 <div id="log-wrapper"> | 49 <div id="log-wrapper"> |
| 40 <h2> | 50 <h2> |
| 41 Log <input id="filter-text" type="text"> | 51 Log <input id="filter-text" type="text"> |
| 42 </h2> | 52 </h2> |
| 43 <table id="log"> | 53 <table id="log"> |
| 44 <thead> | 54 <thead> |
| 45 <tr> | 55 <tr> |
| 46 <td>Timestamp</td> | 56 <th class="timestamp">Timestamp</th> |
| 47 <td>Property</td> | 57 <th>Property</th> |
| 48 <td>Value</td> | 58 <th>Value</th> |
| 49 </tr> | 59 </tr> |
| 50 </thead> | 60 </thead> |
| 51 <tbody></tbody> | 61 <tbody></tbody> |
| 52 </table> | 62 </table> |
| 53 </div> | 63 </div> |
| 54 </div> | 64 </div> |
| 55 <script src="media_internals.js"></script> | 65 <script src="media_internals.js"></script> |
| 56 </body> | 66 </body> |
| 57 </html> | 67 </html> |
| OLD | NEW |