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

Unified 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: 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 side-by-side diff with in-line comments
Download patch
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>
+body {
+ font-family: Arial, sans-serif;
+ font-size: 12px;
+ 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);
apavlov 2012/03/19 16:16:47 Is there any consistent color format defined for C
+ border-top: 1px solid rgb(181, 199, 222);
+ margin: 10px 0 0;
+ padding: 2px 2px;
+}
+
+.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>
+
+<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>

Powered by Google App Engine
This is Rietveld 408576698