Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / http / tests / serviceworker / active.html
1 <!DOCTYPE html>
2 <title>ServiceWorker: navigator.serviceWorker.active</title>
3 <script src="../resources/testharness.js"></script>
4 <script src="../resources/testharnessreport.js"></script>
5 <script src="resources/test-helpers.js"></script>
6 <body>
7 <script>
8 // "active" is set
9 async_test(function(t) {
10     var step = t.step_func.bind(t);
11     var url = 'resources/empty-worker.js';
12     var scope = 'resources/blank.html';
13     var frame;
14     var registration;
15
16     service_worker_unregister(t, scope)
17       .then(step(function() { return with_iframe(scope); }))
18       .then(step(function(f) {
19           frame = f;
20           return navigator.serviceWorker.register(url, {scope: scope});
21         }))
22       .then(step(function(r) {
23           registration = r;
24           return wait_for_update(t, registration);
25         }))
26       .then(step(function(serviceWorker) {
27           return wait_for_state(t, serviceWorker, 'activating');
28         }))
29       .then(step(function() {
30           var container = frame.contentWindow.navigator.serviceWorker;
31           assert_equals(
32             container.controller,
33             null,
34             'On activating state a document should not have a controller');
35           assert_equals(
36             registration.active.scriptURL,
37             normalizeURL(url),
38             'On activating state a document should have an active worker ');
39           assert_equals(
40             registration.waiting,
41             null,
42             'On activating state a document should not have a waiting worker');
43           assert_equals(
44             registration.installing,
45             null,
46             'On activating state a document should not have an installing ' +
47                 'worker');
48
49           // FIXME: Add a test for a frame created after installation.
50           // Should the existing frame ("frame") block activation?
51         }))
52       .then(step(function() {
53           frame.remove();
54           return service_worker_unregister_and_done(t, scope);
55         }))
56       .catch(unreached_rejection(t));
57   }, 'active is set');
58 </script>