Revision 6668ff3716086d3f8efead0f5db2d8d2864c3563 authored by Robert Ma on 21 March 2018, 17:35:46 UTC, committed by Robert Ma on 21 March 2018, 17:35:46 UTC
1. Check the HTTP port of wptserve instead of HTTPS to avoid the
   unnecessary complexities of setting up SSL context (which may fail in
   some environments).
2. Use exponential backoff when waiting for wptserve and specify a
   maximum retry to avoid indefinite hang.
3. Use `terminate` instead of `kill` to give wptserve a chance to clean
   up, which is especially useful when running locally.
1 parent dbb38a6
Raw File
stub-4.7.1.1-wait-until-method.html
<!DOCTYPE html>
<html>
<title>Service Workers: event.waitUntil(f)</title>
    <head>
        <link rel="help" href="https://w3c.github.io/ServiceWorker/#wait-until-method">
        <script src="/resources/testharness.js"></script>
        <script src="/resources/testharnessreport.js"></script>

    </head>
    <body>

<!--

`event.waitUntil(f)` method, when called in `oninstall` or `onactivate`,
extends the lifetime of the event. When called in `oninstall`, it delays
treating the installing worker until the passed [Promise][1] resolves
successfully. This is primarily used to ensure that a `ServiceWorker` is not
active until all of the core caches it depends on are populated. When called in
`onactivate`, it delays treating the activating worker until the passed
[Promise][1] resolves successfully. This is primarily used to ensure that any
[Functional events][2] are not dispatched to the `ServiceWorker` until it
upgrades database schemas and deletes the outdated cache entries.

[1]: http://goo.gl/3TobQS
[2]: #functional-events

-->



    <script>
        test(function() {
            // not_implemented();
        }, "There are no tests for section event.waitUntil(f) so far.");
    </script>

    </body>
</html>

back to top