diff options
author | Andreas Kling <kling@serenityos.org> | 2020-06-12 17:41:14 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-06-12 18:47:18 +0200 |
commit | 21b1f1653d0e50b71d60f2b8bb9d1a7ea4e7b788 (patch) | |
tree | 92772c1f71dbe26c7af60316209cdb02cf4f9ee1 | |
parent | 88673f3f8556e428b79a96c70e7527c456662e52 (diff) | |
download | serenity-21b1f1653d0e50b71d60f2b8bb9d1a7ea4e7b788.zip |
LibWeb: Implement very basic margin collapsing
We now collapse a block's top margin with the previous sibling's
bottom margin so that the larger margin wins.
-rw-r--r-- | Base/home/anon/www/margin-collapse-1.html | 16 | ||||
-rw-r--r-- | Base/home/anon/www/welcome.html | 1 | ||||
-rw-r--r-- | Libraries/LibWeb/Layout/LayoutBlock.cpp | 9 |
3 files changed, 25 insertions, 1 deletions
diff --git a/Base/home/anon/www/margin-collapse-1.html b/Base/home/anon/www/margin-collapse-1.html new file mode 100644 index 0000000000..a71abe391e --- /dev/null +++ b/Base/home/anon/www/margin-collapse-1.html @@ -0,0 +1,16 @@ +<style> +#foo { + border: 1px solid red; + margin: 25px; + width: 100px; + height: 100px; +} +#bar { + border: 1px solid green; + margin: 25px; + width: 100px; + height: 100px; +} +</style> +<div id=foo>foo</div> +<div id=bar>bar</div> diff --git a/Base/home/anon/www/welcome.html b/Base/home/anon/www/welcome.html index 19306ae8cd..ed0c2e14b1 100644 --- a/Base/home/anon/www/welcome.html +++ b/Base/home/anon/www/welcome.html @@ -28,6 +28,7 @@ span#ua { <p>Your user agent is: <b><span id="ua"></span></b></p> <p>Some small test pages:</p> <ul> + <li><a href="margin-collapse-1.html">margin collapsing 1</a></li> <li><a href="position-absolute-from-edges.html">position: absolute, offset from edges</a></li> <li><a href="iframe.html">iframe</a></li> <li><a href="many-buggies.html">many buggies</a></li> diff --git a/Libraries/LibWeb/Layout/LayoutBlock.cpp b/Libraries/LibWeb/Layout/LayoutBlock.cpp index 19318a9551..114a4df77d 100644 --- a/Libraries/LibWeb/Layout/LayoutBlock.cpp +++ b/Libraries/LibWeb/Layout/LayoutBlock.cpp @@ -477,7 +477,14 @@ void LayoutBlock::compute_position() if (relevant_sibling) { auto& previous_sibling_style = relevant_sibling->box_model(); position_y += relevant_sibling->effective_offset().y() + relevant_sibling->height(); - position_y += previous_sibling_style.margin_box(*this).bottom; + + // Collapse top margin with bottom margin of previous sibling if necessary + float previous_sibling_margin_bottom = previous_sibling_style.margin().bottom.to_px(*relevant_sibling); + float my_margin_top = box_model().margin().top.to_px(*this); + if (previous_sibling_margin_bottom > my_margin_top) { + // Sibling's margin is larger than mine, adjust so we use sibling's. + position_y += previous_sibling_margin_bottom - my_margin_top; + } } set_offset({ position_x, position_y }); |