https://github.com/web-platform-tests/wpt
Raw File
Tip revision: f8530212b3e615b46ef66b4c90063dac4579c2d4 authored by Michael[tm] Smith on 20 August 2016, 17:40:50 UTC
cc Rename some SVG *-novalid files to *-valid
Tip revision: f853021
stub-4.3.1-get-serviced-method.html
<!DOCTYPE html>
<html>
<title>Service Workers: getServiced()</title>
    <head>
        <link rel="help" href="https://slightlyoff.github.io/ServiceWorker/spec/service_worker/#get-serviced-method">
        <script src="/resources/testharness.js"></script>
        <script src="/resources/testharnessreport.js"></script>

    </head>
    <body>

<!--

The `getServiced()` method of a `ServiceWorkerClients`, when called, returns a
[Promise][1] that will resolve with a list of `[Client][2]` objects that are
[controlled][3] by this Service Worker.

[1]: http://goo.gl/3TobQS
[2]: #client-interface
[3]: #document-control

-->



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

    </body>
</html>

back to top