1 <!-- 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 4 found 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 <div class='problems-div'> 13 <h3>Problems Detected</h3> 14 <ul class="problems-list"> 15 </ul> 16 </div> 17 18 <div class='workarounds-div'> 19 <h3>Driver Bug Workarounds</h3> 20 <ul class="workarounds-list"> 21 </ul> 22 </div> 23 24 <div> 25 <h3>Version Information</h3> 26 <div id="client-info"></div> 27 </div> 28 29 <div class="performance-div"> 30 <h3>Performance Information</h3> 31 <div id="performance-info"></div> 32 </div> 33 34 <div> 35 <h3>Driver Information</h3> 36 <div id="basic-info"></div> 37 </div> 38 39 <div class="diagnostics"> 40 <h3>Diagnostics</h3> 41 <div class="diagnostics-loading">... loading ...</div> 42 <div id="diagnostics-table">None</div> 43 </div> 44 45 <div id="log-messages" jsdisplay="values.length"> 46 <h3>Log Messages</h3> 47 <ul> 48 <li jsselect="values"> 49 <span jscontent="header"></span>: <span jscontent="message"></span> 50 </li> 51 </ul> 52 </div> 53 54 <!-- templates --> 55 <div style="display:none"> 56 <div id="info-view-table-template"> 57 <table id="info-view-table"> 58 <tr jsselect="value"> 59 <td jsdisplay="!(value instanceof Array)"> 60 <span class="row-title" jscontent="description">title</span> 61 </td> 62 <td jsdisplay="!(value instanceof Array)"> 63 <span jscontent="value">value</span> 64 </td> 65 <td jsdisplay="value instanceof Array" colspan=2> 66 <span jscontent="description" class="row-title"></span> 67 <div transclude="info-view-table-template"></div> 68 </td> 69 </tr> 70 </table> 71 </div> 72 </div> 73 </tabpanel> 74