blob: b3cd06fdf278f4f4d6a87b3bf97648f0e52528a1 (
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: getServiced()</title>
<head>
<link rel="help" href="https://w3c.github.io/ServiceWorker/#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>
|