diff options
author | Emilio Cobos Álvarez <emilio@crisal.io> | 2018-06-23 20:00:26 +0200 |
---|---|---|
committer | Emilio Cobos Álvarez <emilio@crisal.io> | 2018-06-23 20:34:10 +0200 |
commit | 895946bb186a194d1545e4782715f074cc8f8f6c (patch) | |
tree | aad4d22255799cd13706f20338e1e5d9e81010ec /components/layout/table_row.rs | |
parent | 750c223021220da374b35bced42edb60d16e0106 (diff) | |
download | servo-895946bb186a194d1545e4782715f074cc8f8f6c.tar.gz servo-895946bb186a194d1545e4782715f074cc8f8f6c.zip |
layout: script: Fix build.
Diffstat (limited to 'components/layout/table_row.rs')
-rw-r--r-- | components/layout/table_row.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/layout/table_row.rs b/components/layout/table_row.rs index 933d3be632e..ffecce5d6c7 100644 --- a/components/layout/table_row.rs +++ b/components/layout/table_row.rs @@ -353,7 +353,7 @@ impl Flow for TableRowFlow { let collapsing_borders = self.block_flow .fragment .style() - .get_inheritedtable() + .get_inherited_table() .border_collapse == BorderCollapse::Collapse; let row_style = &*self.block_flow.fragment.style; self.preliminary_collapsed_borders.reset( @@ -500,7 +500,7 @@ impl Flow for TableRowFlow { // Set up border collapse info. let border_collapse_info = - match self.block_flow.fragment.style().get_inheritedtable().border_collapse { + match self.block_flow.fragment.style().get_inherited_table().border_collapse { BorderCollapse::Collapse => { Some(BorderCollapseInfoForChildTableCell { collapsed_borders_for_row: &self.final_collapsed_borders, |