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

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

Issue 274743003: Add "inspect" button to chrome://serviceworker-internals. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase and fix typo Created 6 years, 7 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/resources/service_worker/serviceworker_internals.js » ('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;"> 2 <html i18n-values="dir:textdirection;">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title>ServiceWorker registrations</title> 5 <title>ServiceWorker registrations</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">
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 </div> 64 </div>
65 <div class="controls"> 65 <div class="controls">
66 <button class="stop" jsdisplay="$this.active.running_status == 'RUNNING'" 66 <button class="stop" jsdisplay="$this.active.running_status == 'RUNNING'"
67 jsvalues=".scope:scope;.partition_path:$partition_path">S top</button> 67 jsvalues=".scope:scope;.partition_path:$partition_path">S top</button>
68 <button href="#" class="start" jsdisplay="$this.active.runni ng_status != 'RUNNING'" 68 <button href="#" class="start" jsdisplay="$this.active.runni ng_status != 'RUNNING'"
69 jsvalues=".scope:scope;.partition_path:$partition_path">S tart</button> 69 jsvalues=".scope:scope;.partition_path:$partition_path">S tart</button>
70 <button href="#" class="unregister" 70 <button href="#" class="unregister"
71 jsvalues=".scope:scope;.partition_path:$partition_path">U nregister</button> 71 jsvalues=".scope:scope;.partition_path:$partition_path">U nregister</button>
72 <button href="#" class="sync" jsdisplay="$this.active.runnin g_status == 'RUNNING'" 72 <button href="#" class="sync" jsdisplay="$this.active.runnin g_status == 'RUNNING'"
73 jsvalues=".scope:scope;.partition_path:$partition_path">S ync</button> 73 jsvalues=".scope:scope;.partition_path:$partition_path">S ync</button>
74 <button href="#" class="inspect" jsdisplay="$this.active.run ning_status == 'RUNNING'"
75 jsvalues=".scope:scope;.partition_path:$partition_path">I nspect</button>
74 <span class="operation-status" style="display: none">Running ...</span> 76 <span class="operation-status" style="display: none">Running ...</span>
75 </div> 77 </div>
76 </div> 78 </div>
77 </div> 79 </div>
78 </div> 80 </div>
79 <h1>ServiceWorker registrations</h1> 81 <h1>ServiceWorker registrations</h1>
80 <div class="content"> 82 <div class="content">
81 <div id="serviceworker-list"></div> 83 <div id="serviceworker-list"></div>
82 </div> 84 </div>
83 <script src="chrome://resources/js/util.js"></script> 85 <script src="chrome://resources/js/util.js"></script>
84 <script src="chrome://resources/js/cr.js"></script> 86 <script src="chrome://resources/js/cr.js"></script>
85 <script src="serviceworker_internals.js"></script> 87 <script src="serviceworker_internals.js"></script>
86 <script src="chrome://resources/js/load_time_data.js"></script> 88 <script src="chrome://resources/js/load_time_data.js"></script>
87 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 89 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
88 <script src="strings.js"></script> 90 <script src="strings.js"></script>
89 <script src="chrome://resources/js/i18n_template2.js"></script> 91 <script src="chrome://resources/js/i18n_template2.js"></script>
90 </body> 92 </body>
91 </html> 93 </html>
OLDNEW
« no previous file with comments | « no previous file | content/browser/resources/service_worker/serviceworker_internals.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698