LibWeb: Add Layout::Box::margin_box_height()

This commit is contained in:
Andreas Kling 2021-01-18 17:53:49 +01:00
commit 3e8873b63e
Notes: sideshowbarker 2024-07-18 23:07:05 +09:00

View file

@ -58,6 +58,12 @@ public:
return width() + margin_box.left + margin_box.right;
}
float margin_box_height() const
{
auto margin_box = box_model().margin_box();
return height() + margin_box.top + margin_box.bottom;
}
float border_box_width() const
{
auto border_box = box_model().border_box();