LibWeb: Draw floating replaced elements more correctly

Previously floating replaced elements were drawn incorrectly and also
twice.
This commit is contained in:
InvalidUsernameException 2024-12-22 18:21:31 +01:00 committed by Alexander Kalenik
commit 5f1a146afd
Notes: github-actions[bot] 2025-03-03 20:50:39 +00:00
3 changed files with 73 additions and 2 deletions

View file

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>
<head>
<style>
.row > div {
height: 64px;
float: left;
}
.row { clear: both; }
.row > :nth-child(1) { width: 32px; }
.row > :nth-child(2) { width: 64px; }
.red { background-color: red; }
.green { background-color: green; }
</style>
</head>
<body>
<div class="row">
<div class="red"></div>
<div class="green"></div>
</div>
<div class="row">
<div class="green"></div>
<div class="red"></div>
</div>
</body>
</html>