 Chromium Code Reviews
 Chromium Code Reviews Issue 9724038:
  DevTools: convert about:workers into about:inspect  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src
    
  
    Issue 9724038:
  DevTools: convert about:workers into about:inspect  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src| Index: chrome/browser/resources/inspect/inspect.html | 
| diff --git a/chrome/browser/resources/inspect/inspect.html b/chrome/browser/resources/inspect/inspect.html | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..7e831df1a8ae2a3d4fda580d2f3070518bf0ac9f | 
| --- /dev/null | 
| +++ b/chrome/browser/resources/inspect/inspect.html | 
| @@ -0,0 +1,66 @@ | 
| +<!DOCTYPE HTML> | 
| +<html i18n-values="dir:textdirection;"> | 
| +<head> | 
| +<meta charset="utf-8"> | 
| +<title>Inspect with Chrome Developer Tools</title> | 
| +</head> | 
| + | 
| +<body> | 
| + | 
| +<script src="inspect.js"></script> | 
| + | 
| +<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.
 | 
| +body { | 
| + font-family: Arial, sans-serif; | 
| + 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
 | 
| + margin: 10px; | 
| + min-width: 47em; | 
| + padding-bottom: 65px; | 
| +} | 
| + | 
| +img { | 
| + width: 16px; | 
| + height: 16px; | 
| + float: left; | 
| + padding-right: 5px; | 
| +} | 
| + | 
| +.section { | 
| + font-weight: bold; | 
| + background-color: rgb(235, 239, 249); | 
| + border-top: 1px solid rgb(181, 199, 222); | 
| + margin: 10px 0 0; | 
| + padding: 2px 2px; | 
| +} | 
| 
csilv
2012/03/20 18:22:02
order properties for img & .section alphabetically
 
pfeldman
2012/03/20 19:18:47
Done.
 | 
| + | 
| +.row { | 
| + border-bottom: 1px solid #A0A0A0; | 
| + padding: 5px; | 
| +} | 
| + | 
| +.url { | 
| + color: #A0A0A0; | 
| +} | 
| + | 
| +</style> | 
| +<body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> | 
| + | 
| +<div id="top"> | 
| + <div class="section-header"> | 
| + </div> | 
| +</div> | 
| + | 
| +<div class='section'>Pages</div> | 
| +<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.
 | 
| + | 
| +<div class='section'>Extensions</div> | 
| +<div class='list' id="extensions"></div> | 
| + | 
| +<div class='section'>Shared workers</div> | 
| +<div class='list' id="workers"></div> | 
| + | 
| +<div class='section'>Other</div> | 
| +<div class='list' id="others"></div> | 
| + | 
| +</body> | 
| +</html> |