mirror of
https://github.com/servo/servo.git
synced 2025-08-03 20:50:07 +01:00
auto merge of #3998 : Hoverbear/servo/fix_table_caption, r=jdm
Fixed #3997.
This commit is contained in:
commit
561fab57d6
2 changed files with 4 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -17,5 +17,8 @@
|
|||
t.caption = newCaption;
|
||||
is(newCaption.parentNode, t);
|
||||
is(t.caption, newCaption);
|
||||
|
||||
// Test for https://github.com/servo/servo/issues/3997
|
||||
t.getBoundingClientRect();
|
||||
</script>
|
||||
</html>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue