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 e9346c76e7032bc3d510cd74206774bdac76d304..08b923b0ba99633ae50e4c466d19550a16aeca12 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'); |