| OLD | NEW |
| 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</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> |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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'" | 74 <button href="#" class="inspect" jsdisplay="$this.active.run
ning_status == 'RUNNING'" |
| 75 jsvalues=".scope:scope;.partition_path:$partition_path">I
nspect</button> | 75 jsvalues=".scope:scope;.partition_path:$partition_path">I
nspect</button> |
| 76 <span class="operation-status" style="display: none">Running
...</span> | 76 <span class="operation-status" style="display: none">Running
...</span> |
| 77 </div> | 77 </div> |
| 78 </div> | 78 </div> |
| 79 </div> | 79 </div> |
| 80 <div id="serviceworker-options-template"> |
| 81 <div> |
| 82 <span> |
| 83 <input type="checkbox" class="debug_on_start" jsvalues=".che
cked:$this.debug_on_start"> |
| 84 </span> |
| 85 <span>Opens the DevTools window for ServiceWorker on start for d
ebugging.</span> |
| 86 </div> |
| 87 </div> |
| 80 </div> | 88 </div> |
| 81 <h1>ServiceWorker registrations</h1> | 89 <h1>ServiceWorker</h1> |
| 82 <div class="content"> | 90 <div class="content"> |
| 91 <div id="serviceworker-options"></div> |
| 83 <div id="serviceworker-list"></div> | 92 <div id="serviceworker-list"></div> |
| 84 </div> | 93 </div> |
| 85 <script src="chrome://resources/js/util.js"></script> | 94 <script src="chrome://resources/js/util.js"></script> |
| 86 <script src="chrome://resources/js/cr.js"></script> | 95 <script src="chrome://resources/js/cr.js"></script> |
| 87 <script src="serviceworker_internals.js"></script> | 96 <script src="serviceworker_internals.js"></script> |
| 88 <script src="chrome://resources/js/load_time_data.js"></script> | 97 <script src="chrome://resources/js/load_time_data.js"></script> |
| 89 <script src="chrome://resources/js/jstemplate_compiled.js"></script> | 98 <script src="chrome://resources/js/jstemplate_compiled.js"></script> |
| 90 <script src="strings.js"></script> | 99 <script src="strings.js"></script> |
| 91 <script src="chrome://resources/js/i18n_template2.js"></script> | 100 <script src="chrome://resources/js/i18n_template2.js"></script> |
| 92 </body> | 101 </body> |
| 93 </html> | 102 </html> |
| OLD | NEW |