aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/table_cell.rs
diff options
context:
space:
mode:
authorKeith Yeung <kungfukeith11@gmail.com>2017-12-08 04:51:21 -0800
committerKeith Yeung <kungfukeith11@gmail.com>2017-12-08 04:51:58 -0800
commit3465b2f14da768635578e178c1987a1991e39456 (patch)
tree0b43b4e94a235c43cc3c7636eb4e04a00d1350a9 /components/layout/table_cell.rs
parent22472b4db4564f7bc274eb01447e4f04fd7e7205 (diff)
downloadservo-3465b2f14da768635578e178c1987a1991e39456.tar.gz
servo-3465b2f14da768635578e178c1987a1991e39456.zip
Remove border_collapse field in InternalTable
Diffstat (limited to 'components/layout/table_cell.rs')
-rw-r--r--components/layout/table_cell.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/components/layout/table_cell.rs b/components/layout/table_cell.rs
index 42ba7624800..cbde1a2be83 100644
--- a/components/layout/table_cell.rs
+++ b/components/layout/table_cell.rs
@@ -208,9 +208,7 @@ impl Flow for TableCellFlow {
// The position was set to the column inline-size by the parent flow, table row flow.
let containing_block_inline_size = self.block_flow.base.block_container_inline_size;
- let inline_size_computer = InternalTable {
- border_collapse: self.block_flow.fragment.style.get_inheritedtable().border_collapse,
- };
+ let inline_size_computer = InternalTable;
inline_size_computer.compute_used_inline_size(&mut self.block_flow,
shared_context,
containing_block_inline_size);