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

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

Issue 425413002: [ServiceWorker] Tests for Cache (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 side-by-side diff with in-line comments
Download patch
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');

Powered by Google App Engine
This is Rietveld 408576698