mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-05 16:14:38 +00:00
Reverts 98926b487c
that regressed: block-and-inline/small-percentage-margin.html
(thrashing layout while window resizing)
Fixes https://github.com/SerenityOS/serenity/issues/22610
12 lines
259 B
HTML
12 lines
259 B
HTML
<!doctype html><style>
|
|
body {
|
|
background: black;
|
|
width: 620px;
|
|
}
|
|
div {
|
|
display: inline-block;
|
|
width: 33.3333%;
|
|
height: 100px;
|
|
background: orange;
|
|
}
|
|
</style><body><div></div><div></div><div></div> |