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

Unified Diff: content/browser/resources/service_worker/serviceworker_internals.html

Issue 182383008: Create chrome://serviceworker-internals (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix nits Created 6 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: content/browser/resources/service_worker/serviceworker_internals.html
diff --git a/content/browser/resources/service_worker/serviceworker_internals.html b/content/browser/resources/service_worker/serviceworker_internals.html
new file mode 100644
index 0000000000000000000000000000000000000000..22ea6a40a13fe0f57ed917773bfc65b7b9a247c4
--- /dev/null
+++ b/content/browser/resources/service_worker/serviceworker_internals.html
@@ -0,0 +1,76 @@
+<!DOCTYPE html>
+<html i18n-values="dir:textdirection;">
+<head>
+ <meta charset="utf-8">
+ <title>ServiceWorker registrations</title>
+ <link rel="stylesheet" href="chrome://resources/css/tabs.css">
+ <link rel="stylesheet" href="chrome://resources/css/widgets.css">
+ <link rel="stylesheet" href="serviceworker_internals.css">
+</head>
+<body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
+ <!-- templates -->
+ <div style="display:none">
+ <div id="serviceworker-version-template" class="serviceworker-version">
+ <div class="serviceworker-status">
+ <span>Status:</span>
+ <span jscontent="$this.status"></span>
+ </div>
+ <div class="serviceworker-pid">
+ <span>Renderer process ID:</span>
+ <span jscontent="$this.process_id"></span>
+ </div>
+ <div class="serviceworker-tid">
+ <span>Renderer thread ID:</span>
+ <span jscontent="$this.thread_id"></span>
+ </div>
+ </div>
+ <div id="serviceworker-list-template"
+ jsvalues="$partition_path:$this.partition_path;.partition_path:$this.partition_path">
+ <div class="serviceworker-summary">
+ <span>Instances in: </span>
+ <span jscontent="$this.partition_path"></span>
+ <span jscontent="'(' + $this.registrations.length + ')'"></span>
+ </div>
+ <div class="serviceworker-item" jsselect="$this.registrations">
+ <div class="serviceworker-scope">
+ <span>Scope:</span>
+ <span jscontent="scope"></span>
+ </div>
+ <div class="serviceworker-script_url">
+ <span>Script:</span>
+ <span jscontent="script_url"></span>
+ </div>
+ <div jsselect="$this.active">
+ Active worker:
+ <div transclude="serviceworker-version-template"></div>
+ </div>
+ <div jsselect="$this.pending">
+ Pending worker:
+ <div transclude="serviceworker-version-template"></div>
+ </div>
+ <div class="controls">
+ <button class="stop" jsdisplay="$this.active.status == 'RUNNING'"
+ jsvalues=".scope:scope;.partition_path:$partition_path">Stop</button>
+ <button href="#" class="start" jsdisplay="$this.active.status != 'RUNNING'"
+ jsvalues=".scope:scope;.partition_path:$partition_path">Start</button>
+ <button href="#" class="unregister"
+ jsvalues=".scope:scope;.partition_path:$partition_path">Unregister</button>
+ <span class="operation-status" style="display: none">Running...</span>
+ </div>
+ </div>
+ </div>
+ </div>
+ <h1>ServiceWorker registrations</h1>
+ <div class="content">
+ <div id="serviceworker-list">
+ </div>
+ <script src="chrome://resources/js/util.js"></script>
+ <script src="chrome://resources/js/cr.js"></script>
+ <script src="serviceworker_internals.js"></script>
+ <script src="chrome://resources/js/load_time_data.js"></script>
+ <script src="chrome://resources/js/jstemplate_compiled.js"></script>
+ <script src="strings.js"></script>
+ <script src="chrome://resources/js/i18n_template2.js"></script>
+</body>
+</html>
+

Powered by Google App Engine
This is Rietveld 408576698