12345678910111213141516171819202122232425262728 |
- /*
- * Copyright (c) 2021, Tim Flynn <trflynn89@serenityos.org>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #pragma once
- #include <LibWeb/Forward.h>
- #include <LibWeb/Layout/ReplacedBox.h>
- namespace Web::Layout {
- class LabelableNode : public ReplacedBox {
- public:
- Painting::LabelablePaintable* paintable();
- Painting::LabelablePaintable const* paintable() const;
- protected:
- LabelableNode(DOM::Document& document, DOM::Element& element, NonnullRefPtr<CSS::StyleProperties> style)
- : ReplacedBox(document, element, move(style))
- {
- }
- virtual ~LabelableNode() = default;
- };
- }
|