OLD | NEW |
(Empty) | |
| 1 <html> |
| 2 <!-- |
| 3 Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. |
| 6 --> |
| 7 <head> |
| 8 <link rel="stylesheet" href="main.css"> |
| 9 <script src="util.js"></script> |
| 10 <script src="view.js"></script> |
| 11 <script src="tabswitcherview.js"></script> |
| 12 <script src="infoview.js"></script> |
| 13 <script src="main.js"></script> |
| 14 </head> |
| 15 <body onload="onLoaded()"> |
| 16 |
| 17 <!-- Tab switcher for main categories. --> |
| 18 <div id=categoryTabHandles> |
| 19 <ul> |
| 20 <li><a href="#info" id=infoTab>GPU Info</a></li> |
| 21 </ul> |
| 22 <div style="clear: both;"></div> |
| 23 </div> |
| 24 |
| 25 <!-- Info Tab --> |
| 26 <div id=infoTabContent> |
| 27 <div id=infoText></div> |
| 28 </div> |
| 29 |
| 30 </body> |
| 31 </html> |
OLD | NEW |