OLD | NEW |
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>Chrome Version</h3> | 7 <h3>Chrome Version</h3> |
8 <div id="client-info"></div> | 8 <div id="client-info"></div> |
9 <h3>Driver Information</h3> | 9 <h3>Driver Information</h3> |
10 <div id="basic-info"></div> | 10 <div id="basic-info"></div> |
(...skipping 16 matching lines...) Expand all Loading... |
27 <table id="info-view-table"> | 27 <table id="info-view-table"> |
28 <tr jsselect="value"> | 28 <tr jsselect="value"> |
29 <td jsdisplay="!(value instanceof Array)"> | 29 <td jsdisplay="!(value instanceof Array)"> |
30 <span class="row-title" jscontent="description">title</span> | 30 <span class="row-title" jscontent="description">title</span> |
31 </td> | 31 </td> |
32 <td jsdisplay="!(value instanceof Array)"> | 32 <td jsdisplay="!(value instanceof Array)"> |
33 <span jscontent="value">value</span> | 33 <span jscontent="value">value</span> |
34 </td> | 34 </td> |
35 <td jsdisplay="value instanceof Array" colspan=2> | 35 <td jsdisplay="value instanceof Array" colspan=2> |
36 <span jscontent="description" class="row-title"></span> | 36 <span jscontent="description" class="row-title"></span> |
37 <div transclude="info-view-table-template"> | 37 <div transclude="info-view-table-template"></div> |
38 </td> | 38 </td> |
39 </tr> | 39 </tr> |
40 </table> | 40 </table> |
41 </div> | 41 </div> |
42 </div> | 42 </div> |
43 </div> | 43 </div> |
OLD | NEW |