OLD | NEW |
1 <!-- | 1 <!-- |
2 Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 <tabpanel id="info-view"> | 6 <tabpanel id="info-view"> |
7 <div> | 7 <div> |
8 <h3>Graphics Feature Status</h3> | 8 <h3>Graphics Feature Status</h3> |
9 <ul class="feature-status-list"> | 9 <ul class="feature-status-list"> |
10 </ul> | 10 </ul> |
11 </div> | 11 </div> |
12 | 12 |
13 <div class='workarounds-div'> | 13 <div class='workarounds-div'> |
14 <h3>Driver Bug Workarounds</h3> | 14 <h3>Driver Bug Workarounds</h3> |
15 <ul class="workarounds-list"> | 15 <ul class="workarounds-list"> |
16 </ul> | 16 </ul> |
17 </div> | 17 </div> |
18 | 18 |
19 <div class='problems-div'> | 19 <div class='problems-div'> |
20 <h3>Problems Detected</h3> | 20 <h3>Problems Detected</h3> |
21 <ul class="problems-list"> | 21 <ul class="problems-list"> |
22 </ul> | 22 </ul> |
23 </div> | 23 </div> |
24 | 24 |
25 <div> | 25 <div> |
26 <h3>Version Information</h3> | 26 <h3>Version Information</h3> |
27 <div id="client-info"></div> | 27 <div id="client-info"></div> |
28 </div> | 28 </div> |
29 | 29 |
30 <div class="performance-div"> | |
31 <h3>Performance Information</h3> | |
32 <div id="performance-info"></div> | |
33 </div> | |
34 | |
35 <div> | 30 <div> |
36 <h3>Driver Information</h3> | 31 <h3>Driver Information</h3> |
37 <div id="basic-info"></div> | 32 <div id="basic-info"></div> |
38 </div> | 33 </div> |
39 | 34 |
40 <div class="diagnostics"> | 35 <div class="diagnostics"> |
41 <h3>Diagnostics</h3> | 36 <h3>Diagnostics</h3> |
42 <div class="diagnostics-loading">... loading ...</div> | 37 <div class="diagnostics-loading">... loading ...</div> |
43 <div id="diagnostics-table">None</div> | 38 <div id="diagnostics-table">None</div> |
44 </div> | 39 </div> |
(...skipping 24 matching lines...) Expand all Loading... |
69 </td> | 64 </td> |
70 <td jsdisplay="value instanceof Array" colspan=2> | 65 <td jsdisplay="value instanceof Array" colspan=2> |
71 <span jscontent="description" class="row-title"></span> | 66 <span jscontent="description" class="row-title"></span> |
72 <div transclude="info-view-table-template"></div> | 67 <div transclude="info-view-table-template"></div> |
73 </td> | 68 </td> |
74 </tr> | 69 </tr> |
75 </table> | 70 </table> |
76 </div> | 71 </div> |
77 </div> | 72 </div> |
78 </tabpanel> | 73 </tabpanel> |
OLD | NEW |