Index: Source/modules/serviceworkers/ServiceWorkerGlobalScope.idl |
diff --git a/Source/modules/serviceworkers/ServiceWorkerGlobalScope.idl b/Source/modules/serviceworkers/ServiceWorkerGlobalScope.idl |
index 075692a7ec07a1e20904f1dbfe3a6dee6e381f2e..07d2dbfde12dae6981f050f3a5d05b78b40df4d4 100644 |
--- a/Source/modules/serviceworkers/ServiceWorkerGlobalScope.idl |
+++ b/Source/modules/serviceworkers/ServiceWorkerGlobalScope.idl |
@@ -27,6 +27,8 @@ |
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
*/ |
+ |
+// https://slightlyoff.github.io/ServiceWorker/spec/service_worker/index.html#service-worker-global-scope-interface |
[ |
Exposed=ServiceWorker, |
Global=Worker&ServiceWorker, |
@@ -34,9 +36,9 @@ |
] interface ServiceWorkerGlobalScope : WorkerGlobalScope { |
readonly attribute ServiceWorkerClients clients; |
- [CallWith=ExecutionContext, Unforgeable] readonly attribute DOMString scope; |
+ [CallWith=ExecutionContext, Unforgeable] readonly attribute ScalarValueString scope; |
- [CallWith=ScriptState] Promise fetch(DOMString request); |
+ [CallWith=ScriptState] Promise fetch(ScalarValueString request); |
[CallWith=ScriptState] Promise fetch(Request request); |
attribute EventHandler onactivate; |