1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:28:11 +00:00
serenity/Tests/LibWeb/Layout/input/block-and-inline/columns-33-percent-width.html
Aliaksandr Kalenik e7eaf3b566 LibWeb: Remove rounding division for CSSPixels
Reverts 98926b487c
that regressed: block-and-inline/small-percentage-margin.html
(thrashing layout while window resizing)

Fixes https://github.com/SerenityOS/serenity/issues/22610
2024-01-06 21:40:27 +01:00

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>