https://github.com/web-platform-tests/wpt
Revision 65e0628ee53f311f25f50990f4e7b35ba67b06a0 authored by Henrik Skupin on 28 April 2018, 19:36:03 UTC, committed by moz-wptsync-bot on 28 April 2018, 19:48:02 UTC
bugzilla-url: https://bugzilla.mozilla.org/show_bug.cgi?id=1457089
gecko-commit: 9d124f189e612ef45f466456934ccc1b1a4ff824
gecko-integration-branch: central
gecko-reviewers: jgraham
1 parent 0027df2
Raw File
Tip revision: 65e0628ee53f311f25f50990f4e7b35ba67b06a0 authored by Henrik Skupin on 28 April 2018, 19:36:03 UTC
wdspec] Re-enable webdriver/tests/element_click/bubbling.py
Tip revision: 65e0628
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