diff options
author | Emilio Cobos Álvarez <emilio@crisal.io> | 2019-12-15 22:12:10 +0100 |
---|---|---|
committer | Emilio Cobos Álvarez <emilio@crisal.io> | 2019-12-16 14:23:56 +0100 |
commit | 7d30a7da750141bb0ca20b236271b41167ee225b (patch) | |
tree | 3b41496c0c91a2659123134f3d5e146bcbe3a773 /components/layout/table_colgroup.rs | |
parent | c1c2b746c829a9d2266a181e35170300680e6636 (diff) | |
download | servo-7d30a7da750141bb0ca20b236271b41167ee225b.tar.gz servo-7d30a7da750141bb0ca20b236271b41167ee225b.zip |
Servo build fixes.
Diffstat (limited to 'components/layout/table_colgroup.rs')
-rw-r--r-- | components/layout/table_colgroup.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/table_colgroup.rs b/components/layout/table_colgroup.rs index b318dd95efd..ce097083f62 100644 --- a/components/layout/table_colgroup.rs +++ b/components/layout/table_colgroup.rs @@ -76,7 +76,7 @@ impl Flow for TableColGroupFlow { // Retrieve the specified value from the appropriate CSS property. let inline_size = fragment.style().content_inline_size(); for _ in 0..fragment.column_span() { - self.inline_sizes.push(inline_size) + self.inline_sizes.push(inline_size.clone()) } } } |