Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(23)

Side by Side Diff: content/browser/resources/media/new/media_internals.html

Issue 18889006: Removed old media-internals page and rewrote it. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moved all 'new' media internals files into its own folder for a smooth transition. Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!--
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
4 found in the LICENSE file.
5 -->
6
7 <html>
8 <head>
9 <title> Media Internals </title>
10 <link rel="stylesheet" type="text/css" href="media_internals.css">
11 <style media="print">
12 @media print {
13 #player-list {
14 display: none;
15 }
16
17 #player-details {
18 margin-left: 0px;
19 border: none;
20 }
21
22 div.collapse.closed>.collapse-content {
23 display: block;
24 }
25
26 h1, h2, div, .collapse-content {
27 border: none;
28 }
29
30 label, input {
31 display: none;
32 }
33
34 h1 {
35 display: none;
36 }
37
38 div#log-wrapper .collapse-content {
39 max-height: none;
40 }
41
42 div.collapse>.collapse-content {
43 border: none;
44 padding: 0px;
45 }
46 }
47 </style>
48 </head>
49
50 <body>
51
52 <h1> Media-Internals </h1>
53
54 <div class="collapse closed" style="display: none;">
55 <h2> System Properties </h2>
56
57 <div class="system-properties collapse-content">
58 <table>
59 <thead>
60 <tr>
61 <td> Property Name</td>
62 <td> Property Value</td>
63 </tr>
64 </thead>
65 <tbody>
66 <tr>
67 <td> Key</td>
68 <td> Value</td>
69 </tr>
70 <tr>
71 <td>Bandwidth</td>
72 <td> 1.2 G/s</td>
73 </tr>
74 <tr>
75 <td> OOG Support</td>
76 <td> Enabled</td>
77 </tr>
78 <tr>
79 <td> Number of Streams</td>
80 <td> 3</td>
81 </tr>
82 </tbody>
83 </table>
84 </div>
85 </div>
86 <div class="collapse open">
87 <h2> Player Information </h2>
88
89 <div class="player-properties collapse-content">
90 <div id="player-list">
91 <h3> Streams </h3>
92 <label><input id="removal-checkbox" type="checkbox" />Remove dead pl ayers</label>
93
94 <div id="stream"></div>
95 </div>
96 <div id="player-details">
97 <h3> Player Name </h3>
98
99 <div id="player-info-wrapper">
100 <div id="properties">
101 </div>
102 <div id="graph-wrapper">
103 <div class="collapse closed">
104 <h2> Grahps </h2>
105
106 <div class="collapse-content">
107 <div id="graph">
108
109 </div>
110 </div>
111 </div>
112 </div>
113 <div id="log-wrapper">
114 <div class="collapse closed">
115 <h2> Log </h2>
116
117 <div class="collapse-content">
118 <label for="filter-input"> Filter </label>
119 <input id="filter-input" type="text"/>
120
121 <div id="log">
122 </div>
123 </div>
124 </div>
125 </div>
126 </div>
127 </div>
128 <div style="clear: both;"></div>
129 </div>
130 </div>
131 <script src="media_internals.js" language="javascript" type="text/javascript"></ script>
132 </body>
133 </html>
OLDNEW
« no previous file with comments | « content/browser/resources/media/new/media_internals.css ('k') | content/browser/resources/media/new/media_internals.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698