diff options
author | bors-servo <metajack+bors@gmail.com> | 2014-11-15 13:24:28 -0700 |
---|---|---|
committer | bors-servo <metajack+bors@gmail.com> | 2014-11-15 13:24:28 -0700 |
commit | 561fab57d6ac23758f0150e043be28adda12c772 (patch) | |
tree | 16eaa4f30a41ae4d28c3a65980d675cb030f1c38 /components | |
parent | 644765ea5e5a7981f3c35f74c10e2c744409c2a9 (diff) | |
parent | d4f4018e881dd26f503434a65b50994e505b7342 (diff) | |
download | servo-561fab57d6ac23758f0150e043be28adda12c772.tar.gz servo-561fab57d6ac23758f0150e043be28adda12c772.zip |
auto merge of #3998 : Hoverbear/servo/fix_table_caption, r=jdm
Fixed #3997.
Diffstat (limited to 'components')
-rw-r--r-- | components/layout/table_caption.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/table_caption.rs b/components/layout/table_caption.rs index 8a426da962f..210bc8019e7 100644 --- a/components/layout/table_caption.rs +++ b/components/layout/table_caption.rs @@ -82,7 +82,7 @@ impl Flow for TableCaptionFlow { } fn iterate_through_fragment_bounds(&self, iterator: &mut FragmentBoundsIterator) { - self.iterate_through_fragment_bounds(iterator); + self.block_flow.iterate_through_fragment_bounds(iterator); } } |