LibWeb: Store final box model metrics in paint tree, not layout tree

This was a weird case of layout results being stored in the layout tree
instead of in the paint tree like everything else.
This commit is contained in:
Andreas Kling 2025-02-17 13:54:36 +01:00 committed by Andreas Kling
commit fb020a3c8f
Notes: github-actions[bot] 2025-02-17 17:29:27 +00:00
8 changed files with 65 additions and 58 deletions

View file

@ -0,0 +1,32 @@
/*
* Copyright (c) 2018-2025, Andreas Kling <andreas@ladybird.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibWeb/PixelUnits.h>
namespace Web::Painting {
struct PixelBox {
CSSPixels top { 0 };
CSSPixels right { 0 };
CSSPixels bottom { 0 };
CSSPixels left { 0 };
};
struct BoxModelMetrics {
public:
PixelBox margin;
PixelBox padding;
PixelBox border;
PixelBox inset;
PixelBox margin_box() const;
PixelBox padding_box() const;
PixelBox border_box() const;
};
}