Images 💾

Last commit ⭐

commit 853ecb8d8e91fd5b61ce807d222458accca5c296
Author:     Aliaksandr Kalenik <kalenik.aliaksandr@gmail.com>
AuthorDate: Thu May 4 06:34:35 2023 +0300
Commit:     Andreas Kling <kling@serenityos.org>
CommitDate: Thu May 4 06:14:58 2023 +0200

    LibWeb: Narrow width of boxes that create BFC to avoid overlap of float
    
    https://www.w3.org/TR/CSS22/visuren.html#floats says that when a box
    establishes BFC it should not overlap with floats. The way to avoid
    overlaps is up to implementor. This change implements avoiding overlap
    by narrowing width of a box because it seems like what other engines
    do (in the scenarios I tested).