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

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

Issue 205033002: Browser side of new ServiceWorker 'sync' event. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Kinuko comments Created 6 years, 8 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 Pending worker: 52 Pending worker:
53 <div transclude="serviceworker-version-template"></div> 53 <div transclude="serviceworker-version-template"></div>
54 </div> 54 </div>
55 <div class="controls"> 55 <div class="controls">
56 <button class="stop" jsdisplay="$this.active.running_status == 'RUNNING'" 56 <button class="stop" jsdisplay="$this.active.running_status == 'RUNNING'"
57 jsvalues=".scope:scope;.partition_path:$partition_path">S top</button> 57 jsvalues=".scope:scope;.partition_path:$partition_path">S top</button>
58 <button href="#" class="start" jsdisplay="$this.active.runni ng_status != 'RUNNING'" 58 <button href="#" class="start" jsdisplay="$this.active.runni ng_status != 'RUNNING'"
59 jsvalues=".scope:scope;.partition_path:$partition_path">S tart</button> 59 jsvalues=".scope:scope;.partition_path:$partition_path">S tart</button>
60 <button href="#" class="unregister" 60 <button href="#" class="unregister"
61 jsvalues=".scope:scope;.partition_path:$partition_path">U nregister</button> 61 jsvalues=".scope:scope;.partition_path:$partition_path">U nregister</button>
62 <button href="#" class="sync" jsdisplay="$this.active.runnin g_status == 'RUNNING'"
63 jsvalues=".scope:scope;.partition_path:$partition_path">S ync</button>
62 <span class="operation-status" style="display: none">Running ...</span> 64 <span class="operation-status" style="display: none">Running ...</span>
63 </div> 65 </div>
64 </div> 66 </div>
65 </div> 67 </div>
66 </div> 68 </div>
67 <h1>ServiceWorker registrations</h1> 69 <h1>ServiceWorker registrations</h1>
68 <div class="content"> 70 <div class="content">
69 <div id="serviceworker-list"> 71 <div id="serviceworker-list">
70 </div> 72 </div>
71 <script src="chrome://resources/js/util.js"></script> 73 <script src="chrome://resources/js/util.js"></script>
72 <script src="chrome://resources/js/cr.js"></script> 74 <script src="chrome://resources/js/cr.js"></script>
73 <script src="serviceworker_internals.js"></script> 75 <script src="serviceworker_internals.js"></script>
74 <script src="chrome://resources/js/load_time_data.js"></script> 76 <script src="chrome://resources/js/load_time_data.js"></script>
75 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 77 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
76 <script src="strings.js"></script> 78 <script src="strings.js"></script>
77 <script src="chrome://resources/js/i18n_template2.js"></script> 79 <script src="chrome://resources/js/i18n_template2.js"></script>
78 </body> 80 </body>
79 </html> 81 </html>
80
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