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

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

Issue 637953008: Improve video capture columns in chrome://media-internals (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add test for video capture format Created 6 years, 2 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
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>
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 <thead> 57 <thead>
58 <tr> 58 <tr>
59 <th class="timestamp">Timestamp</th> 59 <th class="timestamp">Timestamp</th>
60 <th>Property</th> 60 <th>Property</th>
61 <th>Value</th> 61 <th>Value</th>
62 </tr> 62 </tr>
63 </thead> 63 </thead>
64 <tbody></tbody> 64 <tbody></tbody>
65 </table> 65 </table>
66 </div> 66 </div>
67 <div id="video-capture-capabilities-container"> 67 <div id="video-capture-capabilities-wrapper">
68 <h2>Video Capture Device Capabilities</h2> 68 <h2>Video Capture Device Capabilities</h2>
69 <button id="video-capture-capabilities-copy-button"> 69 <button id="video-capture-capabilities-copy-button">
70 Copy to clipboard</button> 70 Copy to clipboard</button>
71 <table id="video-capture-capabilities-table"> 71 <table id="video-capture-capabilities-table">
72 <thead> 72 <thead>
73 <tr> 73 <tr>
74 <th>Device ID</th>
75 <th>Device Name</th> 74 <th>Device Name</th>
76 <th>Formats</th> 75 <th>Formats</th>
77 <th>Capture API</th> 76 <th>Capture API</th>
77 <th>Device ID</th>
78 </tr> 78 </tr>
79 </thead> 79 </thead>
80 <tbody id="video-capture-capabilities-tbody"> 80 <tbody id="video-capture-capabilities-tbody">
81 81
82 <tbody> 82 <tbody>
83 </table> 83 </table>
84 </div> 84 </div>
85 </div> 85 </div>
86 <script src="media_internals.js"></script> 86 <script src="media_internals.js"></script>
87 </body> 87 </body>
88 </html> 88 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698