summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/service-workers/stub-3.2.2-navigator-service-worker-waiting.html
blob: 663ce82f9685858451bea7129106376b054b6fba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html>
<title>Service Workers: waiting</title>
    <head>
        <link rel="help" href="https://w3c.github.io/ServiceWorker/#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>