mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-07 21:59:54 +00:00
33 lines
577 B
C++
33 lines
577 B
C++
/*
|
|
* Copyright (c) 2018-2025, Andreas Kling <andreas@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/Export.h>
|
|
#include <LibWeb/PixelUnits.h>
|
|
|
|
namespace Web::Painting {
|
|
|
|
struct PixelBox {
|
|
CSSPixels top { 0 };
|
|
CSSPixels right { 0 };
|
|
CSSPixels bottom { 0 };
|
|
CSSPixels left { 0 };
|
|
};
|
|
|
|
struct WEB_API BoxModelMetrics {
|
|
public:
|
|
PixelBox margin;
|
|
PixelBox padding;
|
|
PixelBox border;
|
|
PixelBox inset;
|
|
|
|
PixelBox margin_box() const;
|
|
PixelBox padding_box() const;
|
|
PixelBox border_box() const;
|
|
};
|
|
|
|
}
|