1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 12:37:44 +00:00

LibWeb: Don't drop single <br/> lines

Previously, when having inline contexts consisting of just a `<br/>`
tag, we would not create a line box.

Ensure that there is always a line box when a line is explicitly being
broken and also ensure it won't be trimmed due to being empty.

This will a fix a number of sites that use `<br>` tags for layouts
between block elements (even though the spec says they shouldn't).
This commit is contained in:
Mathis Wiehl 2023-03-15 21:11:38 +01:00 committed by Sam Atkins
parent 2fe4be40af
commit 9927dab993
4 changed files with 29 additions and 2 deletions

View file

@ -0,0 +1,15 @@
<style>
body {
font-family: 'SerenitySans';
}
#begin {
height: 2px;
background-color: blue;
}
#end {
height: 2px;
background-color: red;
}
</style><div id="begin"></div><br><div id="end"></div>