Revert 268405 "Make sure that ScratchBuffer::Allocate() always r..."
[chromium-blink-merge.git] / content / browser / resources / gpu / info_view.html
blobf5e4676cb127061d3e30c6332f57093c240344d7
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>
13 <div class='workarounds-div'>
14 <h3>Driver Bug Workarounds</h3>
15 <ul class="workarounds-list">
16 </ul>
17 </div>
19 <div class='problems-div'>
20 <h3>Problems Detected</h3>
21 <ul class="problems-list">
22 </ul>
23 </div>
25 <div>
26 <h3>Version Information</h3>
27 <div id="client-info"></div>
28 </div>
30 <div class="performance-div">
31 <h3>Performance Information</h3>
32 <div id="performance-info"></div>
33 </div>
35 <div>
36 <h3>Driver Information</h3>
37 <div id="basic-info"></div>
38 </div>
40 <div class="diagnostics">
41 <h3>Diagnostics</h3>
42 <div class="diagnostics-loading">... loading ...</div>
43 <div id="diagnostics-table">None</div>
44 </div>
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>
55 <!-- templates -->
56 <div style="display:none">
57 <div id="info-view-table-template">
58 <table id="info-view-table">
59 <tr jsselect="value">
60 <td jsdisplay="!(value instanceof Array)">
61 <span class="row-title" jscontent="description">title</span>
62 </td>
63 <td jsdisplay="!(value instanceof Array)">
64 <span jscontent="value">value</span>
65 </td>
66 <td jsdisplay="value instanceof Array" colspan=2>
67 <span jscontent="description" class="row-title"></span>
68 <div transclude="info-view-table-template"></div>
69 </td>
70 </tr>
71 </table>
72 </div>
73 </div>
74 </tabpanel>