home *** CD-ROM | disk | FTP | other *** search
- <!DOCTYPE HTML>
- <html>
- <!--
- Copyright (c) 2012 The Chromium Authors. All rights reserved.
- Use of this source code is governed by a BSD-style license that can be
- found in the LICENSE file.
- -->
- <head i18n-values="dir:textdirection;">
- <style>
- * {
- box-sizing: border-box;
- -webkit-user-select: none;
- }
-
- body {
- cursor: default;
- font-family: sans-serif;
- padding: 0;
- margin: 0;
- }
-
- #debug-div {
- display: -webkit-box;
- position: fixed;
- top: 0px;
- left: 50%;
- border: 1px solid red;
- }
-
- tabbox tabpanels {
- padding: 1px;
- }
-
- </style>
- <style>/* Copyright (c) 2012 The Chromium Authors. All rights reserved.
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file. */
-
- #info-view {
- -webkit-box-flex: 1;
- overflow: auto;
- padding: 10px;
- }
-
- #info-view * {
- -webkit-user-select: text;
- }
-
- #info-view[selected] {
- -webkit-box-orient: vertical;
- display: -webkit-box;
- }
-
- #info-view h3,
- #info-view ul {
- -webkit-margin-after: 0;
- -webkit-margin-before: 0;
- }
-
- #info-view > div {
- -webkit-margin-after: 1em;
- }
-
- #info-view .row-title {
- font-weight: bold;
- }
-
- #info-view table {
- border-collapse: collapse;
- cursor: text;
- }
-
- #info-view table,
- #info-view th,
- #info-view td {
- border: 1px solid #777;
- padding-left: 4px;
- padding-right: 4px;
- text-align: top;
- }
-
- #info-view .feature-green {
- color: rgb(0, 128, 0);
- }
-
- #info-view .feature-yellow {
- color: rgb(128, 128, 0);
- }
-
- #info-view .feature-red {
- color: rgb(255, 0, 0);
- }
- </style>
- <link rel="stylesheet" href="chrome://resources/css/tabs.css">
- <link rel="stylesheet" href="chrome://resources/css/widgets.css">
- <script src="chrome://resources/js/cr.js"></script>
- <script src="chrome://resources/js/cr/event_target.js"></script>
- <script src="chrome://resources/js/cr/ui.js"></script>
- <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script>
- <script src="chrome://resources/js/cr/ui/tabs.js"></script>
- <script src="chrome://resources/js/util.js"></script>
- <script src="chrome://gpu-internals/gpu_internals.js"></script>
- <script src="chrome://gpu-internals/strings.js"></script>
- </head>
- <body>
- <div id="debug-div">
- </div>
- <!-- Tabs -->
- <tabbox id="main-tabs">
- <tabs>
- <tab>GPU Info</tab>
- <tab>Profiling</tab>
- </tabs>
- <tabpanels>
- <!--
- Copyright (c) 2012 The Chromium Authors. All rights reserved.
- Use of this source code is governed by a BSD-style license that can be
- found in the LICENSE file.
- -->
- <tabpanel id="info-view">
- <div>
- <h3>Graphics Feature Status</h3>
- <ul class="feature-status-list">
- </ul>
- </div>
- <div class='problems-div'>
- <h3>Problems Detected</h3>
- <ul class="problems-list">
- </ul>
- </div>
-
- <div>
- <h3>Version Information</h3>
- <div id="client-info"></div>
- </div>
-
- <div class="performance-div">
- <h3>Performance Information</h3>
- <div id="performance-info"></div>
- </div>
-
- <div>
- <h3>Driver Information</h3>
- <div id="basic-info"></div>
- </div>
-
- <div class="diagnostics">
- <h3>Diagnostics</h3>
- <div class="diagnostics-loading">... loading ...</div>
- <div id="diagnostics-table">None</div>
- </div>
-
- <div id="crash-list" jsdisplay="values.length">
- <h3>Crash List</h3>
- <ul>
- <li jsselect="values">
- <span jscontent="id"></span>: <span jscontent="time"></span>
- </li>
- </ul>
- </div>
-
- <div id="log-messages" jsdisplay="values.length">
- <h3>Log Messages</h3>
- <ul>
- <li jsselect="values">
- <span jscontent="header"></span>: <span jscontent="message"></span>
- </li>
- </ul>
- </div>
-
- <!-- templates -->
- <div style="display:none">
- <div id="info-view-table-template">
- <table id="info-view-table">
- <tr jsselect="value">
- <td jsdisplay="!(value instanceof Array)">
- <span class="row-title" jscontent="description">title</span>
- </td>
- <td jsdisplay="!(value instanceof Array)">
- <span jscontent="value">value</span>
- </td>
- <td jsdisplay="value instanceof Array" colspan=2>
- <span jscontent="description" class="row-title"></span>
- <div transclude="info-view-table-template"></div>
- </td>
- </tr>
- </table>
- </div>
- </div>
- </tabpanel>
-
- <tabpanel id="profiling-view-link">
- <div>
- Profiling view has moved to <a
- href="chrome://tracing">chrome://tracing</a>.
- </div>
- </tabpanel>
- </tabpanels>
- </tabbox>
- <script src="chrome://resources/js/i18n_template.js"></script>
- <script src="chrome://resources/js/i18n_process.js"></script>
- <script src="chrome://resources/js/jstemplate_compiled.js"></script>
- </body>
- </html>
-