diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2016-04-12 03:17:50 +0530 |
---|---|---|
committer | bors-servo <lbergstrom+bors@mozilla.com> | 2016-04-12 03:17:50 +0530 |
commit | df21bb47d414a1ff068623b55e9da644d7239731 (patch) | |
tree | 183fdf35ab59a3ce62cd8727e4b16ce3c5ada57b /components/script/dom | |
parent | bc2237ea2ba3beac501ca4347b8118f3dccd9629 (diff) | |
parent | 3580f9129101d1e8debbe5d9a216c436b70a2773 (diff) | |
download | servo-df21bb47d414a1ff068623b55e9da644d7239731.tar.gz servo-df21bb47d414a1ff068623b55e9da644d7239731.zip |
Auto merge of #10178 - danlrobertson:flex-order, r=SimonSapin
Implement flexbox reordering
Add style property for `order` and implement reordering by this property
in flex flow. Based on previous work by @zentner-kyle.
Fixes: #9957
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/10178)
<!-- Reviewable:end -->
Diffstat (limited to 'components/script/dom')
-rw-r--r-- | components/script/dom/webidls/CSSStyleDeclaration.webidl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/dom/webidls/CSSStyleDeclaration.webidl b/components/script/dom/webidls/CSSStyleDeclaration.webidl index dba69a515b0..10cf77ccc83 100644 --- a/components/script/dom/webidls/CSSStyleDeclaration.webidl +++ b/components/script/dom/webidls/CSSStyleDeclaration.webidl @@ -310,4 +310,5 @@ partial interface CSSStyleDeclaration { [SetterThrows, TreatNullAs=EmptyString] attribute DOMString flexDirection; [SetterThrows, TreatNullAs=EmptyString] attribute DOMString flex-direction; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString order; }; |