1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:17:44 +00:00

LibWeb/Tests: Port height:auto abspos flex container test to layout test

This test was written before we had layout test functionality.
This commit is contained in:
Shannon Booth 2023-08-21 21:57:02 +12:00 committed by Andreas Kling
parent 6cee028ecc
commit a5fb0b4243
2 changed files with 17 additions and 1 deletions

View file

@ -1,12 +0,0 @@
<!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>