diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2015-12-30 23:50:24 +0000 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2016-01-28 09:43:14 +0100 |
commit | 5498b5434716ac2a464532c0455aac68c8ed06b2 (patch) | |
tree | 3d30387104f8b401f0a14f5d8339cac75cb0b28e /components/layout/model.rs | |
parent | 359b98434843feab752a1f0268339babd9759633 (diff) | |
download | servo-5498b5434716ac2a464532c0455aac68c8ed06b2.tar.gz servo-5498b5434716ac2a464532c0455aac68c8ed06b2.zip |
Add Multicolumn support block fragmentation.
Diffstat (limited to 'components/layout/model.rs')
-rw-r--r-- | components/layout/model.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/model.rs b/components/layout/model.rs index f49ac51ad21..b32a9c48bf9 100644 --- a/components/layout/model.rs +++ b/components/layout/model.rs @@ -272,7 +272,7 @@ pub enum MarginCollapseState { } /// Intrinsic inline-sizes, which consist of minimum and preferred. -#[derive(RustcEncodable)] +#[derive(RustcEncodable, Copy, Clone)] pub struct IntrinsicISizes { /// The *minimum inline-size* of the content. pub minimum_inline_size: Au, |