aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls/StylePropertyMapReadOnly.webidl
diff options
context:
space:
mode:
authorAlan Jeffrey <ajeffrey@mozilla.com>2017-07-25 15:59:00 -0500
committerAlan Jeffrey <ajeffrey@mozilla.com>2017-07-25 15:59:00 -0500
commit7e6fd297ff44e1fb34c5278492075a5a80e66e93 (patch)
treeb0e15eec52254fa19ebe0efade9fb44af02c5699 /components/script/dom/webidls/StylePropertyMapReadOnly.webidl
parente825bf14427c6aab239a82e09d0915467f23aa60 (diff)
downloadservo-7e6fd297ff44e1fb34c5278492075a5a80e66e93.tar.gz
servo-7e6fd297ff44e1fb34c5278492075a5a80e66e93.zip
Implement getProperties for StylePropertyMap.
Diffstat (limited to 'components/script/dom/webidls/StylePropertyMapReadOnly.webidl')
-rw-r--r--components/script/dom/webidls/StylePropertyMapReadOnly.webidl3
1 files changed, 2 insertions, 1 deletions
diff --git a/components/script/dom/webidls/StylePropertyMapReadOnly.webidl b/components/script/dom/webidls/StylePropertyMapReadOnly.webidl
index 7557a0d6071..360e3af909d 100644
--- a/components/script/dom/webidls/StylePropertyMapReadOnly.webidl
+++ b/components/script/dom/webidls/StylePropertyMapReadOnly.webidl
@@ -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;
};