https://github.com/web-platform-tests/wpt
Revision 5794050e126882a6c5a1659b3fa0139796b9c3f6 authored by Ms2ger on 06 May 2015, 11:23:18 UTC, committed by Ms2ger on 29 May 2015, 14:23:57 UTC
1 parent b6d90a7
Raw File
Tip revision: 5794050e126882a6c5a1659b3fa0139796b9c3f6 authored by Ms2ger on 06 May 2015, 11:23:18 UTC
Extend the CharacterData#replaceData test some more.
Tip revision: 5794050
stub-3.2.2-navigator-service-worker-waiting.html
<!DOCTYPE html>
<html>
<title>Service Workers: waiting</title>
    <head>
        <link rel="help" href="https://slightlyoff.github.io/ServiceWorker/spec/service_worker/#navigator-service-worker-waiting">
        <script src="/resources/testharness.js"></script>
        <script src="/resources/testharnessreport.js"></script>

    </head>
    <body>

<!--

`navigator.serviceWorker.waiting` must return a [ServiceWorker][1] object
representing the waiting Service Worker that is considered the [worker in
waiting][2] for the document. `navigator.serviceWorker.waiting` returns `null`
if there is no [worker in waiting][2] for the document.

[1]: #service-worker-interface
[2]: #worker-in-waiting

-->



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

    </body>
</html>

back to top