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..a02559bf7eab0be47829c724b97ed09b48a4393a 100644 |
--- a/LayoutTests/http/tests/serviceworker/resources/interfaces-worker.js |
+++ b/LayoutTests/http/tests/serviceworker/resources/interfaces-worker.js |
@@ -35,4 +35,15 @@ test(function() { |
delete: 'function', |
keys: 'function' |
}); |
+ |
+ verifyInterface('Cache', |
+ new Cache(), |
+ { |
+ match: 'function', |
+ matchAll: 'function', |
+ add: 'function', |
+ put: 'function', delete: 'function', |
jsbell
2014/08/01 00:02:25
Split this line?
asanka
2014/08/13 03:30:04
Done.
|
+ keys: 'function', |
+ batch: 'function' |
+ }); |
}, 'Interfaces and attributes in ServiceWorkerGlobalScope'); |