/* * Copyright (c) 2018-2022, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #include #include #include #include namespace Web::Painting { SVGPaintable::SVGPaintable(Layout::SVGBox const& layout_box) : PaintableBox(layout_box) { } Layout::SVGBox const& SVGPaintable::layout_box() const { return static_cast(layout_node()); } CSSPixelRect SVGPaintable::compute_absolute_rect() const { if (auto* svg_svg_box = layout_box().first_ancestor_of_type()) { CSSPixelRect rect { offset(), content_size() }; for (Layout::Box const* ancestor = svg_svg_box; ancestor; ancestor = ancestor->containing_block()) rect.translate_by(ancestor->paintable_box()->offset()); return rect; } return PaintableBox::compute_absolute_rect(); } }