aboutsummaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
authorOriol Brufau <obrufau@igalia.com>2024-03-15 21:46:41 +0100
committerGitHub <noreply@github.com>2024-03-15 20:46:41 +0000
commit82128d38385708d80a29dc3a6808be943dda6f9b (patch)
treef3e438a65ca5767f627914a801b9ae725e11498b /components
parentd211cfc97870f436485b35a357a66ff4824cc3d5 (diff)
downloadservo-82128d38385708d80a29dc3a6808be943dda6f9b.tar.gz
servo-82128d38385708d80a29dc3a6808be943dda6f9b.zip
Don't null out the baselines of anonymous tables (#31704)
Diffstat (limited to 'components')
-rw-r--r--components/layout_2020/table/layout.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/components/layout_2020/table/layout.rs b/components/layout_2020/table/layout.rs
index e7f2c9f63f5..c571dd92195 100644
--- a/components/layout_2020/table/layout.rs
+++ b/components/layout_2020/table/layout.rs
@@ -1524,11 +1524,6 @@ impl<'a> TableLayout<'a> {
)));
}
- if self.table.anonymous {
- baselines.first = None;
- baselines.last = None;
- }
-
IndependentLayout {
fragments: table_fragments,
content_block_size: table_and_track_dimensions.table_rect.max_block_position(),