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-4.1.7-service-worker-global-scope-onmessage.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-4.1.7-service-worker-global-scope-onmessage.html')
-rw-r--r-- | testing/web-platform/tests/service-workers/stub-4.1.7-service-worker-global-scope-onmessage.html | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/testing/web-platform/tests/service-workers/stub-4.1.7-service-worker-global-scope-onmessage.html b/testing/web-platform/tests/service-workers/stub-4.1.7-service-worker-global-scope-onmessage.html new file mode 100644 index 000000000..b93043948 --- /dev/null +++ b/testing/web-platform/tests/service-workers/stub-4.1.7-service-worker-global-scope-onmessage.html @@ -0,0 +1,45 @@ +<!DOCTYPE html> +<html> +<title>Service Workers: onmessage</title> + <head> + <link rel="help" href="https://w3c.github.io/ServiceWorker/#service-worker-global-scope-onmessage"> + <script src="/resources/testharness.js"></script> + <script src="/resources/testharnessreport.js"></script> + + </head> + <body> + +<!-- + +`self.onmessage` is the [event handler][1] that must be supported as attribute +by the `ServiceWorkerGlobalScope` object. `ServiceWorkerGlobalScope` objects +act as if they had an implicit `[MessagePort][2]` associated with them. This +port is part of a channel that is set up when the worker is created, but it is +not exposed. This object must never be garbage collected before the +`ServiceWorkerGlobalScope` object. + +All messages received by that port must immediately be retargeted at the +`ServiceWorkerGlobalScope` object. That is, an event named `message` using the +`[MessageEvent][3]` interface is dispatched on ServiceWorkerGlobalScope object. +The `event.source` of these `[MessageEvent][3]`s are instances of `[Client][4]`. + + + +[1]: http://goo.gl/rBfiz0 +[2]: http://goo.gl/tHBrI6 +[3]: http://goo.gl/S5e0b6 +[4]: #client-interface + +--> + + + + <script> + test(function() { + // not_implemented(); + }, "There are no tests for section onmessage so far."); + </script> + + </body> +</html> + |