Skip to content

Commit 78231db

Browse files
author
Jonathan Chan
committed
Fix register/unregisterProperty on CSS interface to be static.
See @tabatkins' comment at [1]. [1]: w3c#216 (comment)
1 parent 81cb0ba commit 78231db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

css-properties-values-api/Overview.bs

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ dictionary PropertyDescriptor {
6868
};
6969

7070
partial interface CSS {
71-
void registerProperty(PropertyDescriptor descriptor);
72-
void unregisterProperty(DOMString name);
71+
static void registerProperty(PropertyDescriptor descriptor);
72+
static void unregisterProperty(DOMString name);
7373
};
7474
</pre>
7575

0 commit comments

Comments
 (0)