1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:17:35 +00:00

LibWeb/Tests: Move unresolvable % width on inline-block to layout test

Removing the last test fomr Base/res/html/tests :^)
This commit is contained in:
Shannon Booth 2023-08-21 22:13:19 +12:00 committed by Andreas Kling
parent ed03dd0f99
commit 7690f76f92
2 changed files with 23 additions and 2 deletions

View file

@ -0,0 +1,20 @@
<!DOCTYPE html><html><head><style>
* {
border: 1px solid black !important;
}
.outer {
float: left;
background: pink;
}
.first {
display: inline-block;
width: 100%;
background: orange;
}
.second {
width: 50px;
height: 50px;
background: magenta;
}
</style>
</head><body><div class="outer"><div class="first">programming</div><div class="second"></div>