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

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

Issue 8511046: deprecate webui.css (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: undo mistake in downloads Created 9 years, 1 month 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
(Empty)
1 <!DOCTYPE HTML>
2 <html>
3 <!--
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
6 found in the LICENSE file.
7 -->
8 <head i18n-values="dir:textdirection;">
9 <link rel="stylesheet" href="webui.css">
10 <style>
11 * {
12 box-sizing: border-box;
13 -webkit-user-select: none;
14 }
15
16 html, body, #main-tabs {
17 height: 100%;
18 }
19
20 body {
21 cursor: default;
22 font-family: sans-serif;
23 padding: 0;
24 margin: 0;
25 }
26
27 #debug-div {
28 display: -webkit-box;
29 position: fixed;
30 top: 0px;
31 left: 50%;
32 border: 1px solid red;
33 }
34
35 tabbox tabpanels {
36 padding: 1px;
37 }
38
39 </style>
40 <link rel="stylesheet" href="gpu_internals/info_view.css">
41 <link rel="stylesheet" href="chrome://resources/css/tabs.css">
42 <script src="chrome://resources/js/cr.js"></script>
43 <script src="chrome://resources/js/cr/event_target.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>
46 <script src="chrome://resources/js/cr/ui/tabs.js"></script>
47 <script src="chrome://resources/js/util.js"></script>
48 <script src="chrome://gpu-internals/gpu_internals.js"></script>
49 <script src="chrome://gpu-internals/strings.js"></script>
50 </head>
51 <body>
52 <div id="debug-div">
53 </div>
54 <!-- Tabs -->
55 <tabbox id="main-tabs">
56 <tabs>
57 <tab>GPU Info</tab>
58 <tab>Profiling</tab>
59 </tabs>
60 <tabpanels>
61 <include src="gpu_internals/info_view.html">
62 <tabpanel id="profiling-view-link">
63 <div>
64 Profiling view has moved to <a
65 href="chrome://tracing">chrome://tracing</a>.
66 </div>
67 </tabpanel>
68 </tabpanels>
69 </tabbox>
70 <script src="chrome://resources/js/i18n_template.js"></script>
71 <script src="chrome://resources/js/i18n_process.js"></script>
72 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
73 </body>
74 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698