ladybird/Tests/LibWeb/Layout/input/height-min-max-fit-content.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

8 lines
334 B
HTML

<!doctype html><style>
.min{ height: min-content; }
.max { height: max-content; }
.fit { height: fit-content; }
</style>
<img class="min" src="../../Assets/120.png" width="120" height="60" />
<img class="max" src="../../Assets/120.png" width="120" height="60" />
<img class="fit" src="../../Assets/120.png" width="120" height="60" />