diff options
Diffstat (limited to 'components/layout_2020/flexbox/construct.rs')
-rw-r--r-- | components/layout_2020/flexbox/construct.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout_2020/flexbox/construct.rs b/components/layout_2020/flexbox/construct.rs index e23858efe7f..385b45985e1 100644 --- a/components/layout_2020/flexbox/construct.rs +++ b/components/layout_2020/flexbox/construct.rs @@ -204,7 +204,7 @@ where // https://drafts.csswg.org/css-flexbox/#order-modified-document-order children.sort_by_key(|child| match &*child.borrow() { - FlexLevelBox::FlexItem(item) => item.style.clone_order(), + FlexLevelBox::FlexItem(item) => item.style().clone_order(), // “Absolutely-positioned children of a flex container are treated // as having order: 0 for the purpose of determining their painting order |