OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <title>Service Worker: Controller on load</title> | 2 <title>Service Worker: Controller on load</title> |
3 <script src="../resources/testharness.js"></script> | 3 <script src="../resources/testharness.js"></script> |
4 <script src="../resources/testharnessreport.js"></script> | 4 <script src="../resources/testharnessreport.js"></script> |
5 <script src="resources/test-helpers.js"></script> | 5 <script src="resources/test-helpers.js"></script> |
6 <body> | 6 <body> |
7 <script> | 7 <script> |
8 var t = async_test('controller is set for a controlled document'); | 8 var t = async_test('controller is set for a controlled document'); |
9 t.step(function() { | 9 t.step(function() { |
10 var url = 'resources/empty-worker.js'; | 10 var url = 'resources/empty-worker.js'; |
11 var scope = 'resources/blank.html'; | 11 var scope = 'resources/blank.html'; |
12 service_worker_unregister_and_register(t, url, scope) | 12 service_worker_unregister_and_register(t, url, scope) |
13 .then(t.step_func(function(registration) { | 13 .then(t.step_func(function(registration) { |
14 return wait_for_state(t, registration.installing, 'activated'); | 14 return wait_for_state(t, registration.installing, 'activated'); |
15 })) | 15 })) |
16 .then(t.step_func(function() { | 16 .then(t.step_func(function() { |
17 return with_iframe(scope) | 17 return with_iframe(scope, true); |
18 })) | 18 })) |
19 .then(t.step_func(function(frame) { | 19 .then(t.step_func(function(frame) { |
20 var w = frame.contentWindow; | 20 var w = frame.contentWindow; |
21 var controller = w.navigator.serviceWorker.controller; | 21 var controller = w.navigator.serviceWorker.controller; |
22 assert_true(controller instanceof w.ServiceWorker, | 22 assert_true(controller instanceof w.ServiceWorker, |
23 'controller should be a ServiceWorker object'); | 23 'controller should be a ServiceWorker object'); |
24 assert_equals(controller.scriptURL, normalizeURL(url)); | 24 assert_equals(controller.scriptURL, normalizeURL(url)); |
25 service_worker_unregister_and_done(t, scope); | 25 service_worker_unregister_and_done(t, scope); |
26 })) | 26 })) |
27 .catch(unreached_rejection(t)); | 27 .catch(unreached_rejection(t)); |
28 }); | 28 }); |
29 </script> | 29 </script> |
30 </body> | 30 </body> |
OLD | NEW |