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

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

Issue 9724038: DevTools: convert about:workers into about:inspect (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Test fixed, comments addressed. Created 8 years, 9 months 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 i18n-values="dir:textdirection;">
3 <head>
4 <meta charset="utf-8">
5 <title>Inspect with Chrome Developer Tools</title>
6 </head>
7
8 <body>
9
10 <script src="inspect.js"></script>
11
12 <style>
csilv 2012/03/20 18:22:02 Please move CSS into a new file, inspect.css
pfeldman 2012/03/20 19:18:47 Done.
13 body {
14 font-family: Arial, sans-serif;
15 font-size: 12px;
csilv 2012/03/20 18:22:02 get rid of font-family, font-size... these are bot
pfeldman 2012/03/20 19:18:47 As agreed offline, I'll leave these for now and re
16 margin: 10px;
17 min-width: 47em;
18 padding-bottom: 65px;
19 }
20
21 img {
22 width: 16px;
23 height: 16px;
24 float: left;
25 padding-right: 5px;
26 }
27
28 .section {
29 font-weight: bold;
30 background-color: rgb(235, 239, 249);
31 border-top: 1px solid rgb(181, 199, 222);
32 margin: 10px 0 0;
33 padding: 2px 2px;
34 }
csilv 2012/03/20 18:22:02 order properties for img & .section alphabetically
pfeldman 2012/03/20 19:18:47 Done.
35
36 .row {
37 border-bottom: 1px solid #A0A0A0;
38 padding: 5px;
39 }
40
41 .url {
42 color: #A0A0A0;
43 }
44
45 </style>
46 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
47
48 <div id="top">
49 <div class="section-header">
50 </div>
51 </div>
52
53 <div class='section'>Pages</div>
54 <div class='list' id="pages"></div>
csilv 2012/03/20 18:22:02 order 'id' first, here and below
pfeldman 2012/03/20 19:18:47 Done.
55
56 <div class='section'>Extensions</div>
57 <div class='list' id="extensions"></div>
58
59 <div class='section'>Shared workers</div>
60 <div class='list' id="workers"></div>
61
62 <div class='section'>Other</div>
63 <div class='list' id="others"></div>
64
65 </body>
66 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698