Home | History | Annotate | Download | only in gpu_internals
      1 <!--
      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
      4 found in the LICENSE file.
      5 -->
      6 <div id=info-view label="GPU Info">
      7   <h3>Graphics Feature 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 
     16   <h3>Version Information</h3>
     17   <div id="client-info"></div>
     18 
     19   <h3>Driver Information</h3>
     20   <div id="basic-info"></div>
     21 
     22   <div class="diagnostics">
     23     <h3>Diagnostics</h3>
     24     <div class="diagnostics-loading">... loading ...</div>
     25     <div id="diagnostics-table">None</div>
     26   </div>
     27 
     28   <div id="log-messages" jsdisplay="values.length">
     29     <h3>Log Messages</h3>
     30     <ul>
     31       <li jsselect="values">
     32         <span jscontent="header"></span>: <span jscontent="message"></span>
     33       </li>
     34     </ul>
     35   </div>
     36 
     37   <!-- templates -->
     38   <div style="display:none">
     39     <div id="info-view-table-template">
     40       <table id="info-view-table">
     41         <tr jsselect="value">
     42           <td jsdisplay="!(value instanceof Array)">
     43             <span class="row-title" jscontent="description">title</span>
     44           </td>
     45           <td jsdisplay="!(value instanceof Array)">
     46             <span jscontent="value">value</span>
     47           </td>
     48           <td jsdisplay="value instanceof Array" colspan=2>
     49             <span jscontent="description" class="row-title"></span>
     50             <div transclude="info-view-table-template"></div>
     51           </td>
     52         </tr>
     53       </table>
     54     </div>
     55   </div>
     56 </div>
     57