ladybird/Tests/LibWeb/Layout/input/img-with-box-sizing-border-box-and-padding.html
Sam Atkins 08253d6aee Tests/LibWeb: Move assets used by multiple test types into Assets/
Having to go through multiple levels of .. is not ideal, but less odd
than reaching into another test type's data files.
2024-11-05 14:02:07 +00:00

13 lines
289 B
HTML

<!doctype html><style>
img {
padding: 20px;
box-sizing: border-box;
border: 1px solid black;
}
.with-height {
height: 100px;
}
.with-width {
width: 100px;
}
</style><img class="with-height" src="../../Assets/120.png"><img class="with-width" src="../../Assets/120.png">