mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 11:20:03 +00:00
Though table wrappers are anonymous block containers (because TableWrapper is inherited from BlockContainer) with no lines they should not be skipped in block auto height calculation.
12 lines
222 B
HTML
12 lines
222 B
HTML
<!DOCTYPE html><html><head><style>
|
|
body {
|
|
font-family: 'SerenitySans';
|
|
}
|
|
* {
|
|
border: 1px solid black;
|
|
}
|
|
span {
|
|
display: table-cell;
|
|
}
|
|
</style></head><body><div><span>foo</span></div><div><span>bar</span></div>
|