/* * Copyright (c) 2022, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #include namespace Web::Painting { NonnullOwnPtr TextPaintable::create(Layout::TextNode const& layout_node) { return adopt_own(*new TextPaintable(layout_node)); } TextPaintable::TextPaintable(Layout::TextNode const& layout_node) : Paintable(layout_node) { } }