Files
ladybird/Tests/LibWeb/Layout/input/table-in-auto-height-flex-item.html
Aliaksandr Kalenik 1ee99017e2 LibWeb: Fix intrinsic sizing early return condition in TFC
Early return before running full TFC algorithm is only possible when
just table width need to be calculated.
2023-03-27 23:10:16 +02:00

15 lines
310 B
HTML

<!DOCTYPE html><html><head><style>
* {
border: 1px solid black;
font-family: 'SerenitySans';
}
body {
display: flex;
}
.cell {
display: table-cell;
}
.upper {
background: pink;
}
</style></head><body><div class="upper"><div class="cell">Hello</div>