Revision 859e67ce666775ccd471e4693d85d4e90989e270 authored by Bernie Thompson on 29 March 2018, 17:39:39 UTC, committed by Chromium WPT Sync on 29 March 2018, 17:39:39 UTC
BUG=chromium:825100
TEST=None

This reverts commit f2d2fe87028de36a489f7db3f5fb28da2e9d9b2b.

Change-Id: I01e5962e0b52ad63feca36513db19253a5ade530
1 parent a149250
Raw File
stub-4.7.2.2-replace-method.html
<!DOCTYPE html>
<html>
<title>Service Workers: event.replace()</title>
    <head>
        <link rel="help" href="https://w3c.github.io/ServiceWorker/#replace-method">
        <script src="/resources/testharness.js"></script>
        <script src="/resources/testharnessreport.js"></script>

    </head>
    <body>

<!--

`replace()` interacts with `waitUntil` method in the following way:

-   Successful installation can be delayed by `waitUntil`, perhaps by
    subsequent event handlers.
-   Replacement only happens upon successful installation
-   Therefore, replacement of the [active worker][1] (if any) is not
    immediate, however it may occur as soon as the end of the current turn.



[1]: #navigator-service-worker-active

-->



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

    </body>
</html>

back to top