/* * Copyright (c) 2022, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include namespace Web::Painting { class SVGPaintable : public PaintableBox { JS_CELL(SVGPaintable, PaintableBox); public: virtual void before_children_paint(PaintContext&, PaintPhase) const override; virtual void after_children_paint(PaintContext&, PaintPhase) const override; Layout::SVGBox const& layout_box() const; protected: SVGPaintable(Layout::SVGBox const&); virtual CSSPixelRect compute_absolute_rect() const override; }; }