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

Side by Side Diff: LayoutTests/http/tests/serviceworker/resources/interfaces-worker.js

Issue 647493002: Move promise_test and assert_promise_rejects out of worker-test-harness. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@geofencing_serviceworker
Patch Set: rebase Created 6 years, 2 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 importScripts('interfaces.js'); 1 importScripts('interfaces.js');
2 importScripts('worker-test-harness.js'); 2 importScripts('worker-testharness.js');
3 3
4 test(function() { 4 test(function() {
5 var EVENT_HANDLER = 'object'; 5 var EVENT_HANDLER = 'object';
6 6
7 verifyInterface('ServiceWorkerGlobalScope', 7 verifyInterface('ServiceWorkerGlobalScope',
8 self, 8 self,
9 { 9 {
10 scope: 'string', 10 scope: 'string',
11 clients: 'object', 11 clients: 'object',
12 close: 'function', 12 close: 'function',
(...skipping 17 matching lines...) Expand all
30 self.caches, 30 self.caches,
31 { 31 {
32 match: 'function', 32 match: 'function',
33 get: 'function', 33 get: 'function',
34 has: 'function', 34 has: 'function',
35 create: 'function', 35 create: 'function',
36 delete: 'function', 36 delete: 'function',
37 keys: 'function' 37 keys: 'function'
38 }); 38 });
39 }, 'Interfaces and attributes in ServiceWorkerGlobalScope'); 39 }, 'Interfaces and attributes in ServiceWorkerGlobalScope');
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698