Implement getProperties for StylePropertyMap.

This commit is contained in:
Alan Jeffrey 2017-07-25 15:59:00 -05:00
parent e825bf1442
commit 7e6fd297ff
5 changed files with 31 additions and 4 deletions

View file

@ -10,6 +10,7 @@ interface StylePropertyMapReadOnly {
// sequence<CSSStyleValue> getAll(DOMString property);
boolean has(DOMString property);
// iterable<DOMString, (CSSStyleValue or sequence<CSSStyleValue>)>;
// sequence<DOMString> getProperties();
sequence<DOMString> getProperties();
// https://github.com/w3c/css-houdini-drafts/issues/268
// stringifier;
};