2023-03-30 10:22:39 -03:00
|
|
|
/*
|
2024-10-04 08:19:50 -03:00
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <andreas@ladybird.org>
|
2023-03-30 10:22:39 -03:00
|
|
|
* Copyright (c) 2021, Tobias Christiansen <tobyase@serenityos.org>
|
|
|
|
|
* Copyright (c) 2021-2023, Sam Atkins <atkinssj@serenityos.org>
|
|
|
|
|
* Copyright (c) 2022-2023, MacDue <macdue@dueutil.tech>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <LibGfx/Rect.h>
|
|
|
|
|
#include <LibWeb/CSS/Length.h>
|
2025-07-19 23:35:33 -03:00
|
|
|
#include <LibWeb/Export.h>
|
2023-03-30 10:22:39 -03:00
|
|
|
|
|
|
|
|
namespace Web::CSS {
|
|
|
|
|
|
2025-07-19 23:35:33 -03:00
|
|
|
struct WEB_API EdgeRect {
|
2025-08-27 12:22:48 -03:00
|
|
|
LengthOrAuto top_edge;
|
|
|
|
|
LengthOrAuto right_edge;
|
|
|
|
|
LengthOrAuto bottom_edge;
|
|
|
|
|
LengthOrAuto left_edge;
|
2023-08-31 19:16:39 -03:00
|
|
|
CSSPixelRect resolved(Layout::Node const&, CSSPixelRect) const;
|
2023-03-30 10:22:39 -03:00
|
|
|
bool operator==(EdgeRect const&) const = default;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|