mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 13:28:11 +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
No EOL
259 B
HTML
12 lines
No EOL
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> |