1234567891011121314151617181920212223 |
- /*
- * Copyright (c) 2020, Matthew Olsson <mattco@serenityos.org>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #pragma once
- #include <LibWeb/DOM/Element.h>
- namespace Web::SVG {
- class SVGElement : public DOM::Element {
- public:
- using WrapperType = Bindings::SVGElementWrapper;
- virtual bool requires_svg_container() const override { return true; }
- protected:
- SVGElement(DOM::Document&, QualifiedName);
- };
- }
|