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

Side by Side Diff: LayoutTests/http/tests/serviceworker/interfaces.html

Issue 513353002: Revert of Revert of ServiceWorker: throw when close() or terminate() called (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | LayoutTests/http/tests/serviceworker/resources/fetch-body-stream-worker.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <title>Service Worker: Interfaces</title> 2 <title>Service Worker: Interfaces</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/interfaces.js"></script> 5 <script src="resources/interfaces.js"></script>
6 <script src="resources/test-helpers.js"></script> 6 <script src="resources/test-helpers.js"></script>
7 <script> 7 <script>
8 8
9 test(function() { 9 test(function() {
10 verifyInterface( 10 verifyInterface(
(...skipping 24 matching lines...) Expand all
35 onupdatefound: EVENT_HANDLER 35 onupdatefound: EVENT_HANDLER
36 }); 36 });
37 return wait_for_update(t, registration); 37 return wait_for_update(t, registration);
38 }) 38 })
39 .then(function(worker) { 39 .then(function(worker) {
40 verifyInterface( 40 verifyInterface(
41 'ServiceWorker', worker, 41 'ServiceWorker', worker,
42 { 42 {
43 scriptURL: 'string', 43 scriptURL: 'string',
44 state: 'string', 44 state: 'string',
45 terminate: 'function',
45 onstatechange: EVENT_HANDLER 46 onstatechange: EVENT_HANDLER
46 }); 47 });
47 return registration.unregister(); 48 return registration.unregister();
48 }) 49 })
49 .then(function() { 50 .then(function() {
50 t.done(); 51 t.done();
51 }) 52 })
52 .catch(unreached_rejection(t)); 53 .catch(unreached_rejection(t));
53 }, 'Interfaces and attributes of ServiceWorker'); 54 }, 'Interfaces and attributes of ServiceWorker');
54 55
55 service_worker_test( 56 service_worker_test(
56 'resources/interfaces-worker.js', 57 'resources/interfaces-worker.js',
57 'Interfaces and attributes in ServiceWorkerGlobalScope'); 58 'Interfaces and attributes in ServiceWorkerGlobalScope');
58 59
59 </script> 60 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/http/tests/serviceworker/resources/fetch-body-stream-worker.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698