aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/table_row.rs
diff options
context:
space:
mode:
authorConnor Brewster <brewsterc@my.caspercollege.edu>2016-05-23 18:56:42 -0600
committerConnor Brewster <brewsterc@my.caspercollege.edu>2016-05-23 23:09:24 -0600
commit5e734112a080c58c8d055cd8a5a899960eb80802 (patch)
tree6567a362d0d98cb47be66d081fc729ddb6c4734a /components/layout/table_row.rs
parent7d02c2055d5c5c7a5a6b1fff34bbef75e1da7cf6 (diff)
downloadservo-5e734112a080c58c8d055cd8a5a899960eb80802.tar.gz
servo-5e734112a080c58c8d055cd8a5a899960eb80802.zip
Fixed colspan not including cell spacing
Diffstat (limited to 'components/layout/table_row.rs')
-rw-r--r--components/layout/table_row.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/table_row.rs b/components/layout/table_row.rs
index 7fb6cd6ab27..ca5b5133984 100644
--- a/components/layout/table_row.rs
+++ b/components/layout/table_row.rs
@@ -357,7 +357,7 @@ impl Flow for TableRowFlow {
None => break,
};
column_computed_inline_size.size = column_computed_inline_size.size +
- extra_column_computed_inline_size.size;
+ extra_column_computed_inline_size.size + self.spacing.horizontal;
}
computed_inline_size_for_cells.push(column_computed_inline_size)