- add sources.
[platform/framework/web/crosswalk.git] / src / content / browser / resources / media / media_internals.html
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   <textarea id="clipboard-textarea" class="hidden"></textarea>
17   <div id="container">
18     <div id="list-wrapper">
19       <div id="player-list-wrapper">
20         <h2>Players</h2>
21         <ul id="player-list"></ul>
22       </div>
23       <div id="audio-stream-list-wrapper">
24         <h2>Audio Streams</h2>
25         <ul id="audio-stream-list"></ul>
26       </div>
27     </div>
28     <div id="property-wrapper">
29       <h2>Properties <button id="copy-button">copy to clipboard</button> </h2>
30       <table id="property-table">
31         <thead>
32           <tr>
33             <td>Property Name</td> <td>Value</td>
34           </tr>
35         </thead>
36       </table>
37       <ul id="graphs"></ul>
38     </div>
39     <div id="log-wrapper">
40       <h2>
41         Log <input id="filter-text" type="text">
42       </h2>
43       <table id="log">
44         <thead>
45           <tr>
46             <td>Timestamp</td>
47             <td>Property</td>
48             <td>Value</td>
49           </tr>
50         </thead>
51         <tbody></tbody>
52       </table>
53     </div>
54   </div>
55   <script src="media_internals.js"></script>
56 </body>
57 </html>