diff options
author | Kyle Zentner <kzentner@mozilla.com> | 2015-07-18 00:46:22 -0700 |
---|---|---|
committer | Patrick Walton <pcwalton@mimiga.net> | 2015-08-21 15:59:16 -0700 |
commit | 45b7ee9bdb8ddd1d114ef00907e3abc018840644 (patch) | |
tree | 55379f39d8673a91cf88a4b95296fb54a253f3b7 /components/script/dom/webidls/CSSStyleDeclaration.webidl | |
parent | 1f9778fad90e41ec70e8f54d61e168172635d925 (diff) | |
download | servo-45b7ee9bdb8ddd1d114ef00907e3abc018840644.tar.gz servo-45b7ee9bdb8ddd1d114ef00907e3abc018840644.zip |
Parse flex-direction CSS property.
Diffstat (limited to 'components/script/dom/webidls/CSSStyleDeclaration.webidl')
-rw-r--r-- | components/script/dom/webidls/CSSStyleDeclaration.webidl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/script/dom/webidls/CSSStyleDeclaration.webidl b/components/script/dom/webidls/CSSStyleDeclaration.webidl index 3444a460441..014e12740bf 100644 --- a/components/script/dom/webidls/CSSStyleDeclaration.webidl +++ b/components/script/dom/webidls/CSSStyleDeclaration.webidl @@ -204,4 +204,6 @@ partial interface CSSStyleDeclaration { [SetterThrows, TreatNullAs=EmptyString] attribute DOMString transitionTimingFunction; [SetterThrows, TreatNullAs=EmptyString] attribute DOMString transitionProperty; [SetterThrows, TreatNullAs=EmptyString] attribute DOMString transitionDelay; + + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString flexDirection; }; |