Skip to content

Commit

Permalink
Add css-properties-values-api idl file
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Bjerring committed Mar 7, 2018
1 parent fbf57c4 commit 30997d1
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions interfaces/css-properties-values-api.idl
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
dictionary PropertyDescriptor {
required DOMString name;
DOMString syntax = "*";
boolean inherits = false;
DOMString initialValue;
};

partial interface CSS {
static void registerProperty(PropertyDescriptor descriptor);
static void unregisterProperty(DOMString name);
};

0 comments on commit 30997d1

Please sign in to comment.