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 7b8f83d262c3212ccf09e93e2722c462fda058c2..d9014f4f93421bfd9a3c78f0bddbea24dbdddbce 100644 |
--- a/LayoutTests/http/tests/serviceworker/resources/interfaces-worker.js |
+++ b/LayoutTests/http/tests/serviceworker/resources/interfaces-worker.js |
@@ -35,4 +35,16 @@ test(function() { |
delete: 'function', |
keys: 'function' |
}); |
+ |
+ verifyInterface('Cache', |
+ new Cache(), |
+ { |
+ match: 'function', |
+ matchAll: 'function', |
+ add: 'function', |
+ addAll: 'function', |
+ put: 'function', |
+ delete: 'function', |
+ keys: 'function', |
+ }); |
}, 'Interfaces and attributes in ServiceWorkerGlobalScope'); |