/* * Copyright (c) 2018-2020, Andreas Kling * Copyright (c) 2021, Tobias Christiansen * Copyright (c) 2021-2023, Sam Atkins * Copyright (c) 2022-2023, MacDue * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include namespace Web::CSS { struct WEB_API EdgeRect { LengthOrAuto top_edge; LengthOrAuto right_edge; LengthOrAuto bottom_edge; LengthOrAuto left_edge; CSSPixelRect resolved(Layout::Node const&, CSSPixelRect) const; bool operator==(EdgeRect const&) const = default; bool is_computationally_independent() const { return !top_edge.is_computationally_independent() && !right_edge.is_computationally_independent() && !bottom_edge.is_computationally_independent() && !left_edge.is_computationally_independent(); } }; }