diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /testing/web-platform/tests/service-workers/stub-3.1.1-service-worker-scope.html | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'testing/web-platform/tests/service-workers/stub-3.1.1-service-worker-scope.html')
-rw-r--r-- | testing/web-platform/tests/service-workers/stub-3.1.1-service-worker-scope.html | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/testing/web-platform/tests/service-workers/stub-3.1.1-service-worker-scope.html b/testing/web-platform/tests/service-workers/stub-3.1.1-service-worker-scope.html new file mode 100644 index 000000000..8c75c6082 --- /dev/null +++ b/testing/web-platform/tests/service-workers/stub-3.1.1-service-worker-scope.html @@ -0,0 +1,46 @@ +<!DOCTYPE html> +<html> +<title>Service Workers: scope</title> + <head> + <link rel="help" href="https://w3c.github.io/ServiceWorker/#service-worker-scope"> + <script src="/resources/testharness.js"></script> + <script src="/resources/testharnessreport.js"></script> + + </head> + <body> + +<!-- + +The `scope` of a `ServiceWorker` object reflects the [URL scope][1] of the +associated Service Worker [registration][2]. The `scope` attribute must return +the [serialization][3] of the URL representing the [URL scope][1] of the +associated Service Worker [registration][2]. + +For example, consider a document created by a navigation to +`https://example.com/app.html` which [matches][4] via the following +registration call which has been previously executed: +// Script on the page https://example.com/app.html +navigator.serviceWorker.register("/service_worker.js", { scope: "/*" }); +The value of `navigator.serviceWorker.controller.scope` will be +`"https://example.com/*"`. + + + +[1]: #url-scope +[2]: #registration +[3]: http://url.spec.whatwg.org/#concept-url-serializer +[4]: #on-fetch-request-algorithm + +--> + + + + <script> + test(function() { + // not_implemented(); + }, "There are no tests for section scope so far."); + </script> + + </body> +</html> + |