Skip to content

Commit fbcd370

Browse files
committed
vaev-engine: Prevent table tests from using content-box sizing in cells.
1 parent c0da555 commit fbcd370

File tree

2 files changed

+225
-85
lines changed

2 files changed

+225
-85
lines changed

src/vaev-engine/layout/table.cpp

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -849,15 +849,6 @@ struct TableFormatingContext : FormatingContext {
849849
}
850850
}
851851
}
852-
853-
for (usize i = 0; i < grid.size.y; ++i) {
854-
Au rowBorderHeight{0};
855-
for (usize j = 0; j < grid.size.x; ++j) {
856-
auto cellVertBorder = bordersGrid.get(i, j).vertical();
857-
rowBorderHeight = max(rowBorderHeight, cellVertBorder);
858-
}
859-
rowHeight[i] += rowBorderHeight;
860-
}
861852
}
862853

863854
struct AxisHelper { // FIXME: find me a better name pls

0 commit comments

Comments
 (0)