diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2019-12-04 16:23:33 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-04 16:23:33 -0500 |
commit | e70397d90aef6af1f14952cd22839bb0a4a1f072 (patch) | |
tree | 3992153170142a5b78daa4105bba555a0722cc7c /components/layout_2020/lib.rs | |
parent | 951dc2419af2aa4c9e79e42c73e74db54bdeb7ba (diff) | |
parent | dd9dfc66e324748ffce14be5df9ac61258941653 (diff) | |
download | servo-e70397d90aef6af1f14952cd22839bb0a4a1f072.tar.gz servo-e70397d90aef6af1f14952cd22839bb0a4a1f072.zip |
Auto merge of #25033 - servo:intrinsic, r=nox
Add support for inline-block and for computing min/max-content
Diffstat (limited to 'components/layout_2020/lib.rs')
-rw-r--r-- | components/layout_2020/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/layout_2020/lib.rs b/components/layout_2020/lib.rs index 80254421e66..dd589e1819b 100644 --- a/components/layout_2020/lib.rs +++ b/components/layout_2020/lib.rs @@ -4,6 +4,7 @@ #![deny(unsafe_code)] #![feature(exact_size_is_empty)] +#![feature(matches_macro)] pub mod context; pub mod data; @@ -18,6 +19,7 @@ mod opaque_node; mod positioned; pub mod query; mod replaced; +mod sizing; mod style_ext; pub mod traversal; pub mod wrapper; |