mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-08 13:37:10 +09:00

This was a weird case of layout results being stored in the layout tree instead of in the paint tree like everything else.
41 lines
847 B
C++
41 lines
847 B
C++
/*
|
|
* Copyright (c) 2018-2025, Andreas Kling <andreas@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibWeb/Painting/BoxModelMetrics.h>
|
|
|
|
namespace Web::Painting {
|
|
|
|
PixelBox BoxModelMetrics::margin_box() const
|
|
{
|
|
return {
|
|
margin.top + border.top + padding.top,
|
|
margin.right + border.right + padding.right,
|
|
margin.bottom + border.bottom + padding.bottom,
|
|
margin.left + border.left + padding.left,
|
|
};
|
|
}
|
|
|
|
PixelBox BoxModelMetrics::padding_box() const
|
|
{
|
|
return {
|
|
padding.top,
|
|
padding.right,
|
|
padding.bottom,
|
|
padding.left,
|
|
};
|
|
}
|
|
|
|
PixelBox BoxModelMetrics::border_box() const
|
|
{
|
|
return {
|
|
border.top + padding.top,
|
|
border.right + padding.right,
|
|
border.bottom + padding.bottom,
|
|
border.left + padding.left,
|
|
};
|
|
}
|
|
|
|
}
|