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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/resources/interfaces.js

Issue 2933913002: Upstream service worker prototype test to WPT
Patch Set: Migrate test for immutable prototype Created 3 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 unified diff | Download patch
OLDNEW
(Empty)
1 function verify_interface(name, instance, attributes) {
2 assert_true(name in self,
3 name + ' should be an defined type');
4 if (instance) {
5 assert_true(instance instanceof self[name],
6 instance + ' should be an instance of ' + name);
7 Object.keys(attributes || {}).forEach(function(attribute) {
8 var type = attributes[attribute];
9 assert_true(attribute in instance,
10 attribute + ' should be an attribute of ' + name);
11 assert_equals(typeof instance[attribute], type,
12 attribute + ' should be of type ' + type);
13 });
14 }
15 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698