| 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</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 --> |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 jsvalues=".cmdArgs:{partition_id:$partition_id,scope:scope}"> | 90 jsvalues=".cmdArgs:{partition_id:$partition_id,scope:scope}"> |
| 91 Start | 91 Start |
| 92 </button> | 92 </button> |
| 93 <span class="operation-status" style="display: none">Running...</span> | 93 <span class="operation-status" style="display: none">Running...</span> |
| 94 </div> | 94 </div> |
| 95 </div> | 95 </div> |
| 96 <div id="serviceworker-list-template" | 96 <div id="serviceworker-list-template" |
| 97 jsvalues="$partition_id:$this.partition_id;.partition_id:$this.partition
_id" | 97 jsvalues="$partition_id:$this.partition_id;.partition_id:$this.partition
_id" |
| 98 jsdisplay="$this.stored_registrations.length + $this.unregistered_regist
rations.length + $this.unregistered_versions.length > 0"> | 98 jsdisplay="$this.stored_registrations.length + $this.unregistered_regist
rations.length + $this.unregistered_versions.length > 0"> |
| 99 <div class="serviceworker-summary"> | 99 <div class="serviceworker-summary"> |
| 100 <span>Registrations in: </span> | 100 <span jsdisplay="$this.partition_path"> |
| 101 <span jscontent="$this.partition_path"></span> | 101 <span>Registrations in: </span> |
| 102 <span jscontent="$this.partition_path"></span> |
| 103 </span> |
| 104 <span jsdisplay="!$this.partition_path"> |
| 105 <span>Registrations: Incognito </span> |
| 106 </span> |
| 102 <span jscontent="'(' + $this.stored_registrations.length + ')'"></span> | 107 <span jscontent="'(' + $this.stored_registrations.length + ')'"></span> |
| 103 </div> | 108 </div> |
| 104 <div class="serviceworker-item" jsselect="$this.stored_registrations"> | 109 <div class="serviceworker-item" jsselect="$this.stored_registrations"> |
| 105 <div transclude="serviceworker-registration-template"></div> | 110 <div transclude="serviceworker-registration-template"></div> |
| 106 </div> | 111 </div> |
| 107 <div class="serviceworker-item" | 112 <div class="serviceworker-item" |
| 108 jsselect="$this.unregistered_registrations"> | 113 jsselect="$this.unregistered_registrations"> |
| 109 <div transclude="serviceworker-registration-template"></div> | 114 <div transclude="serviceworker-registration-template"></div> |
| 110 </div> | 115 </div> |
| 111 <div class="serviceworker-item" jsselect="$this.unregistered_versions"> | 116 <div class="serviceworker-item" jsselect="$this.unregistered_versions"> |
| (...skipping 20 matching lines...) Expand all Loading... |
| 132 </div> | 137 </div> |
| 133 <script src="chrome://resources/js/util.js"></script> | 138 <script src="chrome://resources/js/util.js"></script> |
| 134 <script src="chrome://resources/js/cr.js"></script> | 139 <script src="chrome://resources/js/cr.js"></script> |
| 135 <script src="serviceworker_internals.js"></script> | 140 <script src="serviceworker_internals.js"></script> |
| 136 <script src="chrome://resources/js/load_time_data.js"></script> | 141 <script src="chrome://resources/js/load_time_data.js"></script> |
| 137 <script src="chrome://resources/js/jstemplate_compiled.js"></script> | 142 <script src="chrome://resources/js/jstemplate_compiled.js"></script> |
| 138 <script src="strings.js"></script> | 143 <script src="strings.js"></script> |
| 139 <script src="chrome://resources/js/i18n_template2.js"></script> | 144 <script src="chrome://resources/js/i18n_template2.js"></script> |
| 140 </body> | 145 </body> |
| 141 </html> | 146 </html> |
| OLD | NEW |