1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:58:11 +00:00
serenity/Tests/LibWeb/Layout/input/abspos-flexbox-with-auto-height.html
Shannon Booth a5fb0b4243 LibWeb/Tests: Port height:auto abspos flex container test to layout test
This test was written before we had layout test functionality.
2023-08-21 13:51:12 +02:00

12 lines
No EOL
297 B
HTML

<!DOCTYPE html><html><head><style>
* {
border: 1px solid black;
}
nav {
position: absolute;
display: flex;
}
.item {
background: lime;
}
</style></head><body><nav><div class=item>This should have a green background.</div></nav></body></html>