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

Side by Side Diff: content/browser/resources/service_worker/serviceworker_internals.html

Issue 2334003004: Show the fetch handler existence in chrome://serviceworker-internals (Closed)
Patch Set: Created 4 years, 3 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
« no previous file with comments | « no previous file | content/browser/service_worker/service_worker_info.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html i18n-values="dir:textdirection;lang:language"> 2 <html i18n-values="dir:textdirection;lang:language">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title>ServiceWorker</title> 5 <title>ServiceWorker</title>
6 <link rel="stylesheet" href="chrome://resources/css/tabs.css"> 6 <link rel="stylesheet" href="chrome://resources/css/tabs.css">
7 <link rel="stylesheet" href="chrome://resources/css/widgets.css"> 7 <link rel="stylesheet" href="chrome://resources/css/widgets.css">
8 <link rel="stylesheet" href="serviceworker_internals.css"> 8 <link rel="stylesheet" href="serviceworker_internals.css">
9 </head> 9 </head>
10 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 10 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
11 <!-- templates --> 11 <!-- templates -->
12 <div style="display:none"> 12 <div style="display:none">
13 <div id="serviceworker-version-template" class="serviceworker-version"> 13 <div id="serviceworker-version-template" class="serviceworker-version">
14 <div class="serviceworker-status"> 14 <div class="serviceworker-status">
15 <span>Installation Status:</span> 15 <span>Installation Status:</span>
16 <span jscontent="$this.status"></span> 16 <span jscontent="$this.status"></span>
17 </div> 17 </div>
18 <div class="serviceworker-running-status"> 18 <div class="serviceworker-running-status">
19 <span>Running Status:</span> 19 <span>Running Status:</span>
20 <span jscontent="$this.running_status"></span> 20 <span jscontent="$this.running_status"></span>
21 </div> 21 </div>
22 <div class="serviceworker-fetch-handler-existence">
23 <span>Fetch handler existence:</span>
24 <span jscontent="$this.fetch_handler_existence"></span>
25 </div>
22 <div class="serviceworker-script_url"> 26 <div class="serviceworker-script_url">
23 <span>Script:</span> 27 <span>Script:</span>
24 <span jscontent="$this.script_url"></span> 28 <span jscontent="$this.script_url"></span>
25 </div> 29 </div>
26 <div class="serviceworker-vid"> 30 <div class="serviceworker-vid">
27 <span>Version ID:</span> 31 <span>Version ID:</span>
28 <span jscontent="$this.version_id"></span> 32 <span jscontent="$this.version_id"></span>
29 </div> 33 </div>
30 <div class="serviceworker-pid"> 34 <div class="serviceworker-pid">
31 <span>Renderer process ID:</span> 35 <span>Renderer process ID:</span>
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 </div> 135 </div>
132 <script src="chrome://resources/js/util.js"></script> 136 <script src="chrome://resources/js/util.js"></script>
133 <script src="chrome://resources/js/cr.js"></script> 137 <script src="chrome://resources/js/cr.js"></script>
134 <script src="serviceworker_internals.js"></script> 138 <script src="serviceworker_internals.js"></script>
135 <script src="chrome://resources/js/load_time_data.js"></script> 139 <script src="chrome://resources/js/load_time_data.js"></script>
136 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 140 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
137 <script src="strings.js"></script> 141 <script src="strings.js"></script>
138 <script src="chrome://resources/js/i18n_template.js"></script> 142 <script src="chrome://resources/js/i18n_template.js"></script>
139 </body> 143 </body>
140 </html> 144 </html>
OLDNEW
« no previous file with comments | « no previous file | content/browser/service_worker/service_worker_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698