diff options
author | Keith Yeung <kungfukeith11@gmail.com> | 2017-08-25 23:41:55 -0700 |
---|---|---|
committer | Keith Yeung <kungfukeith11@gmail.com> | 2017-08-25 23:41:55 -0700 |
commit | 1df72ba9354bea9c371322b080746f1b597f8513 (patch) | |
tree | 868f9516dcba0989f5a7c3e12c6e010be2fe13f6 /components/layout/table.rs | |
parent | 3c42792efade03a31b9eeca8be457992cf83722c (diff) | |
download | servo-1df72ba9354bea9c371322b080746f1b597f8513.tar.gz servo-1df72ba9354bea9c371322b080746f1b597f8513.zip |
Remove border collapse argument from compute_border_and_padding
Diffstat (limited to 'components/layout/table.rs')
-rw-r--r-- | components/layout/table.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/components/layout/table.rs b/components/layout/table.rs index b56ac7c4d09..da129747da8 100644 --- a/components/layout/table.rs +++ b/components/layout/table.rs @@ -545,8 +545,7 @@ pub struct InternalTable { impl ISizeAndMarginsComputer for InternalTable { fn compute_border_and_padding(&self, block: &mut BlockFlow, containing_block_inline_size: Au) { - block.fragment.compute_border_and_padding(containing_block_inline_size, - self.border_collapse) + block.fragment.compute_border_and_padding(containing_block_inline_size) } /// Compute the used value of inline-size, taking care of min-inline-size and max-inline-size. |