Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(130)

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/service-workers/stub-3.2.1-navigator-service-worker-installing.html

Issue 2415873002: Import w3c tests for the service workers (Closed)
Patch Set: Rebase Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <title>Service Workers: installing</title>
4 <head>
5 <link rel="help" href="https://w3c.github.io/ServiceWorker/#navigator-se rvice-worker-installing">
6 <script src="/resources/testharness.js"></script>
7 <script src="/resources/testharnessreport.js"></script>
8
9 </head>
10 <body>
11
12 <!--
13
14 `navigator.serviceWorker.installing` must return a [ServiceWorker][1] object
15 representing the [installing worker][2] that is currently undergoing the
16 installation process (from step 1 to step 7 of the [_Installation
17 algorithm][3]) for the given [URL scope][4] in which the document may be
18 [controlled][5] when the Service Worker becomes the [active worker][6].
19 `navigator.serviceWorker.installing` returns `null` if no Service Worker
20 [registration][7] is in the [installation process][8].
21
22 [1]: #service-worker-interface
23 [2]: #installing-worker
24 [3]: #installation-algorithm
25 [4]: #url-scope
26 [5]: #document-control
27 [6]: #active-worker
28 [7]: #service-worker-registration-internal-interface
29 [8]: #installation-process
30
31 -->
32
33
34
35 <script>
36 test(function() {
37 // not_implemented();
38 }, "There are no tests for section installing so far.");
39 </script>
40
41 </body>
42 </html>
43
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698