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

Side by Side Diff: chrome/browser/resources/gpu_internals/info_view.html

Issue 6712048: Implement easy GPU feature status summary. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Minor tweak. Created 9 years, 8 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 | Annotate | Revision Log
OLDNEW
1 <!-- 1 <!--
2 Copyright (c) 2010 The Chromium Authors. All rights reserved. 2 Copyright (c) 2010 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 <div id=info-view label="GPU Info"> 6 <div id=info-view label="GPU Info">
7 <h3>Hardware Acceleration Status</h3>
8 <ul class="feature-status-list">
9 </ul>
10 <div class='problems-div'>
11 <h3>Problems Detected</h3>
12 <ul class="problems-list">
13 </ul>
14 </div>
15
7 <h3>Version Information</h3> 16 <h3>Version Information</h3>
8 <div id="client-info"></div> 17 <div id="client-info"></div>
9 18
10 <div class="blacklisted-indicator">
11 <h3>Hardware Acceleration Unavailable</h3>
12 <ul class="blacklisted-reasons">
13 </ul>
14 </div>
15
16 <h3>Driver Information</h3> 19 <h3>Driver Information</h3>
17 <div id="basic-info"></div> 20 <div id="basic-info"></div>
18 21
19 <div class="diagnostics"> 22 <div class="diagnostics">
20 <h3>Diagnostics</h3> 23 <h3>Diagnostics</h3>
21 <div id="diagnostics-table">None</div> 24 <div id="diagnostics-table">None</div>
22 </div> 25 </div>
23 26
24 <div id="log-messages" jsdisplay="values.length"> 27 <div id="log-messages" jsdisplay="values.length">
25 <h3>Log Messages</h3> 28 <h3>Log Messages</h3>
26 <ul> 29 <ul>
27 <li jsselect="values"> 30 <li jsselect="values">
28 <span jscontent="header"></span>: <span jscontent="message"></span> 31 <span jscontent="header"></span>: <span jscontent="message"></span>
29 </li> 32 </li>
30 </ul> 33 </ul>
31 </div> 34 </div>
32 35
33 <!-- templates --> 36 <!-- templates -->
34 <div style="display:none"> 37 <div style="display:none">
35 <div id="info-view-table-template"> 38 <div id="info-view-table-template">
36 <table id="info-view-table"> 39 <table id="info-view-table">
37 <tr jsselect="value"> 40 <tr jsselect="value">
38 <td jsdisplay="!(value instanceof Array)"> 41 <td jsdisplay="!(value instanceof Array)">
39 <span class="row-title" jscontent="description">title</span> 42 <span class="row-title" jscontent="description">title</span>
40 </td> 43 </td>
41 <td jsdisplay="!(value instanceof Array)"> 44 <td jsdisplay="!(value instanceof Array)">
42 <span jscontent="value">value</span> 45 <span jscontent="value">value</span>
43 </td> 46 </td>
44 <td jsdisplay="value instanceof Array" colspan=2> 47 <td jsdisplay="value instanceof Array" colspan=2>
45 <span jscontent="description" class="row-title"></span> 48 <span jscontent="description" class="row-title"></span>
46 <div transclude="info-view-table-template"></div> 49 <div transclude="info-view-table-template"></div>
47 </td> 50 </td>
48 </tr> 51 </tr>
49 </table> 52 </table>
50 </div> 53 </div>
51 </div> 54 </div>
52 </div> 55 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698