| OLD | NEW |
| 1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <html> | 2 <html> |
| 3 <!-- | 3 <!-- |
| 4 Copyright (c) 2010 The Chromium Authors. All rights reserved. | 4 Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 5 Use of this source code is governed by a BSD-style license that can be | 5 Use of this source code is governed by a BSD-style license that can be |
| 6 found in the LICENSE file. | 6 found in the LICENSE file. |
| 7 --> | 7 --> |
| 8 <head i18n-values="dir:textdirection;"> | 8 <head i18n-values="dir:textdirection;"> |
| 9 <link rel="stylesheet" href="webui.css"> | |
| 10 <style> | 9 <style> |
| 11 * { | 10 * { |
| 12 box-sizing: border-box; | 11 box-sizing: border-box; |
| 13 -webkit-user-select: none; | 12 -webkit-user-select: none; |
| 14 } | 13 } |
| 15 | 14 |
| 16 html, body, #main-tabs { | 15 html, body, #main-tabs { |
| 17 height: 100%; | 16 height: 100%; |
| 18 } | 17 } |
| 19 | 18 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 30 top: 0px; | 29 top: 0px; |
| 31 left: 50%; | 30 left: 50%; |
| 32 border: 1px solid red; | 31 border: 1px solid red; |
| 33 } | 32 } |
| 34 | 33 |
| 35 tabbox tabpanels { | 34 tabbox tabpanels { |
| 36 padding: 1px; | 35 padding: 1px; |
| 37 } | 36 } |
| 38 | 37 |
| 39 </style> | 38 </style> |
| 40 <link rel="stylesheet" href="gpu_internals/info_view.css"> | 39 <link rel="stylesheet" href="info_view.css"> |
| 41 <link rel="stylesheet" href="chrome://resources/css/tabs.css"> | 40 <link rel="stylesheet" href="chrome://resources/css/tabs.css"> |
| 41 <link rel="stylesheet" href="chrome://resources/css/button.css"> |
| 42 <script src="chrome://resources/js/cr.js"></script> | 42 <script src="chrome://resources/js/cr.js"></script> |
| 43 <script src="chrome://resources/js/cr/event_target.js"></script> | 43 <script src="chrome://resources/js/cr/event_target.js"></script> |
| 44 <script src="chrome://resources/js/cr/ui.js"></script> | 44 <script src="chrome://resources/js/cr/ui.js"></script> |
| 45 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script> | 45 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script> |
| 46 <script src="chrome://resources/js/cr/ui/tabs.js"></script> | 46 <script src="chrome://resources/js/cr/ui/tabs.js"></script> |
| 47 <script src="chrome://resources/js/util.js"></script> | 47 <script src="chrome://resources/js/util.js"></script> |
| 48 <script src="chrome://gpu-internals/gpu_internals.js"></script> | 48 <script src="chrome://gpu-internals/gpu_internals.js"></script> |
| 49 <script src="chrome://gpu-internals/strings.js"></script> | 49 <script src="chrome://gpu-internals/strings.js"></script> |
| 50 </head> | 50 </head> |
| 51 <body> | 51 <body> |
| 52 <div id="debug-div"> | 52 <div id="debug-div"> |
| 53 </div> | 53 </div> |
| 54 <!-- Tabs --> | 54 <!-- Tabs --> |
| 55 <tabbox id="main-tabs"> | 55 <tabbox id="main-tabs"> |
| 56 <tabs> | 56 <tabs> |
| 57 <tab>GPU Info</tab> | 57 <tab>GPU Info</tab> |
| 58 <tab>Profiling</tab> | 58 <tab>Profiling</tab> |
| 59 </tabs> | 59 </tabs> |
| 60 <tabpanels> | 60 <tabpanels> |
| 61 <include src="gpu_internals/info_view.html"> | 61 <include src="info_view.html"> |
| 62 <tabpanel id="profiling-view-link"> | 62 <tabpanel id="profiling-view-link"> |
| 63 <div> | 63 <div> |
| 64 Profiling view has moved to <a | 64 Profiling view has moved to <a |
| 65 href="chrome://tracing">chrome://tracing</a>. | 65 href="chrome://tracing">chrome://tracing</a>. |
| 66 </div> | 66 </div> |
| 67 </tabpanel> | 67 </tabpanel> |
| 68 </tabpanels> | 68 </tabpanels> |
| 69 </tabbox> | 69 </tabbox> |
| 70 <script src="chrome://resources/js/i18n_template.js"></script> | 70 <script src="chrome://resources/js/i18n_template.js"></script> |
| 71 <script src="chrome://resources/js/i18n_process.js"></script> | 71 <script src="chrome://resources/js/i18n_process.js"></script> |
| 72 <script src="chrome://resources/js/jstemplate_compiled.js"></script> | 72 <script src="chrome://resources/js/jstemplate_compiled.js"></script> |
| 73 </body> | 73 </body> |
| 74 </html> | 74 </html> |
| OLD | NEW |