diff options
Diffstat (limited to 'components/script')
-rw-r--r-- | components/script/dom/webidls/CSSStyleDeclaration.webidl | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/components/script/dom/webidls/CSSStyleDeclaration.webidl b/components/script/dom/webidls/CSSStyleDeclaration.webidl index 567167024ee..1d1d5223183 100644 --- a/components/script/dom/webidls/CSSStyleDeclaration.webidl +++ b/components/script/dom/webidls/CSSStyleDeclaration.webidl @@ -310,7 +310,21 @@ partial interface CSSStyleDeclaration { [SetterThrows, TreatNullAs=EmptyString] attribute DOMString flexDirection; [SetterThrows, TreatNullAs=EmptyString] attribute DOMString flex-direction; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString flexWrap; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString flex-wrap; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString justifyContent; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString justify-content; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString alignItems; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString align-items; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString alignContent; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString align-content; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString order; [SetterThrows, TreatNullAs=EmptyString] attribute DOMString flexBasis; [SetterThrows, TreatNullAs=EmptyString] attribute DOMString flex-basis; - [SetterThrows, TreatNullAs=EmptyString] attribute DOMString order; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString flexGrow; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString flex-grow; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString flexShrink; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString flex-shrink; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString alignSelf; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString align-self; }; |