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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/serviceworker/controller-on-load.html

Issue 1859343002: ServiceWorker: Remove iframes explicitly after a test is finished (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove a comment line Created 4 years, 8 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
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);
nhiroki 2016/04/07 05:37:18 |IFRAME_RECLAMATION.TRUE| is the default behavior,
shimazu (google) 2016/04/07 06:53:55 Done.
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698