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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/fetch-event.https.html

Issue 2695813009: Import wpt@503f5b5f78ec4e87d144f78609f363f0ed0ea8db (Closed)
Patch Set: Skip some tests Created 3 years, 10 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 <script src="/resources/testharness.js"></script> 2 <script src="/resources/testharness.js"></script>
3 <script src="/resources/testharnessreport.js"></script> 3 <script src="/resources/testharnessreport.js"></script>
4 <script src="resources/get-host-info.sub.js"></script> 4 <script src="/common/get-host-info.sub.js"></script>
5 <script src="resources/test-helpers.sub.js"></script> 5 <script src="resources/test-helpers.sub.js"></script>
6 <body> 6 <body>
7 <script> 7 <script>
8 var worker = 'resources/fetch-event-test-worker.js'; 8 var worker = 'resources/fetch-event-test-worker.js';
9 9
10 async_test(function(t) { 10 async_test(function(t) {
11 var scope = 'resources/simple.html?string'; 11 var scope = 'resources/simple.html?string';
12 service_worker_unregister_and_register(t, worker, scope) 12 service_worker_unregister_and_register(t, worker, scope)
13 .then(function(reg) { 13 .then(function(reg) {
14 return wait_for_state(t, reg.installing, 'activated'); 14 return wait_for_state(t, reg.installing, 'activated');
(...skipping 641 matching lines...) Expand 10 before | Expand all | Expand 10 after
656 }) 656 })
657 .then(function() { 657 .then(function() {
658 frame.remove(); 658 frame.remove();
659 return service_worker_unregister_and_done(t, scope); 659 return service_worker_unregister_and_done(t, scope);
660 }) 660 })
661 .catch(unreached_rejection(t)); 661 .catch(unreached_rejection(t));
662 }, 'Service Worker responds to fetch event with the correct integrity_metadata '); 662 }, 'Service Worker responds to fetch event with the correct integrity_metadata ');
663 663
664 </script> 664 </script>
665 </body> 665 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698