ladybird/Tests/LibWeb/Layout/input/block-and-inline/floating-box-with-box-sizing-border-box.html
Aliaksandr Kalenik e3e0041c7f Tests/LibWeb: Add layout test for float box with box-sizing=border-box
Adds a test for d6a31d80c0 that was
mistakenly ommited in the first place.
2024-09-18 15:49:40 +02:00

10 lines
No EOL
196 B
HTML

<!DOCTYPE html><style>
.box {
float: left;
width: 300px;
height: 200px;
padding: 100px;
background-color: magenta;
box-sizing: border-box;
}
</style><div class="box"></div>