Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <html> | |
|
arv (Not doing code reviews)
2010/11/24 19:07:38
missing doctype
I'm sure you do not want to use q
nduca
2010/12/03 21:32:50
Done.
| |
| 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> | |
|
arv (Not doing code reviews)
2010/11/24 19:07:38
ids should be dash separated
id="category-tab-han
nduca
2010/12/03 21:32:50
Done.
| |
| 19 <ul> | |
| 20 <li><a href="#info" id=infoTab>GPU Info</a></li> | |
| 21 </ul> | |
| 22 <div style="clear: both;"></div> | |
|
arv (Not doing code reviews)
2010/11/24 19:07:38
Why? floats are often not what you want
nduca
2010/12/03 21:32:50
Done.
| |
| 23 </div> | |
| 24 | |
| 25 <!-- Info Tab --> | |
| 26 <div id=infoTabContent> | |
| 27 <div id=infoText></div> | |
| 28 </div> | |
| 29 | |
| 30 </body> | |
| 31 </html> | |
| OLD | NEW |