Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(112)

Side by Side Diff: chrome/browser/resources/gpu_internals/info_view.html

Issue 6551019: Trace_event upgrades (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More gooder js thanks to arv. Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698