1<!-- 2Copyright (c) 2012 The Chromium Authors. All rights reserved. 3Use of this source code is governed by a BSD-style license that can be 4found in the LICENSE file. 5--> 6<tabpanel id="info-view"> 7 <div> 8 <h3>Graphics Feature Status</h3> 9 <ul class="feature-status-list"> 10 </ul> 11 </div> 12 13 <div class='workarounds-div'> 14 <h3>Driver Bug Workarounds</h3> 15 <ul class="workarounds-list"> 16 </ul> 17 </div> 18 19 <div class='problems-div'> 20 <h3>Problems Detected</h3> 21 <ul class="problems-list"> 22 </ul> 23 </div> 24 25 <div> 26 <h3>Version Information</h3> 27 <div id="client-info"></div> 28 </div> 29 30 <div class="performance-div"> 31 <h3>Performance Information</h3> 32 <div id="performance-info"></div> 33 </div> 34 35 <div> 36 <h3>Driver Information</h3> 37 <div id="basic-info"></div> 38 </div> 39 40 <div class="diagnostics"> 41 <h3>Diagnostics</h3> 42 <div class="diagnostics-loading">... loading ...</div> 43 <div id="diagnostics-table">None</div> 44 </div> 45 46 <div id="log-messages" jsdisplay="values.length"> 47 <h3>Log Messages</h3> 48 <ul> 49 <li jsselect="values"> 50 <span jscontent="header"></span>: <span jscontent="message"></span> 51 </li> 52 </ul> 53 </div> 54 55 <!-- templates --> 56 <div style="display:none"> 57 <div id="info-view-table-template"> 58 <table id="info-view-table"> 59 <colgroup> 60 <col style="width: 25%" /> 61 <col style="width: 75%" /> 62 </colgroup> 63 <tr jsselect="value"> 64 <td jsdisplay="!(value instanceof Array)"> 65 <span class="row-title" jscontent="description">title</span> 66 </td> 67 <td jsdisplay="!(value instanceof Array)"> 68 <span jscontent="value">value</span> 69 </td> 70 <td jsdisplay="value instanceof Array" colspan=2> 71 <span jscontent="description" class="row-title"></span> 72 <div transclude="info-view-table-template"></div> 73 </td> 74 </tr> 75 </table> 76 </div> 77 </div> 78</tabpanel> 79