| Index: LayoutTests/http/tests/serviceworker/resources/interfaces-worker.js
|
| diff --git a/LayoutTests/http/tests/serviceworker/resources/interfaces-worker.js b/LayoutTests/http/tests/serviceworker/resources/interfaces-worker.js
|
| index 9609efeddde7d0b55dad85ef85be1f16ab2dd366..7b8f83d262c3212ccf09e93e2722c462fda058c2 100644
|
| --- a/LayoutTests/http/tests/serviceworker/resources/interfaces-worker.js
|
| +++ b/LayoutTests/http/tests/serviceworker/resources/interfaces-worker.js
|
| @@ -25,4 +25,14 @@ test(function() {
|
| verifyInterface('ServiceWorkerClient');
|
| // FIXME: Get an instance and test it, or ensure property exists on prototype.
|
|
|
| -}, 'Interfaces and attributes in ServiceWorkerGlobalScope');
|
| + verifyInterface('CacheStorage',
|
| + self.caches,
|
| + {
|
| + match: 'function',
|
| + get: 'function',
|
| + has: 'function',
|
| + create: 'function',
|
| + delete: 'function',
|
| + keys: 'function'
|
| + });
|
| + }, 'Interfaces and attributes in ServiceWorkerGlobalScope');
|
|
|