mirror of
https://github.com/RGBCube/serenity
synced 2025-05-22 18:45:08 +00:00

This patch adds basic support for the SVG `<textPath>`, so it supports placing text along a path, but none of the extra attributes for controlling the layout of the text. This is enough to correctly display the MDN example.
30 lines
764 B
C++
30 lines
764 B
C++
/*
|
|
* Copyright (c) 2023, MacDue <macdue@dueutil.tech>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/SVG/SVGGeometryElement.h>
|
|
#include <LibWeb/SVG/SVGTextContentElement.h>
|
|
|
|
namespace Web::SVG {
|
|
|
|
// https://svgwg.org/svg2-draft/text.html#TextPathElement
|
|
class SVGTextPathElement : public SVGTextContentElement {
|
|
WEB_PLATFORM_OBJECT(SVGTextPathElement, SVGTextContentElement);
|
|
JS_DECLARE_ALLOCATOR(SVGTextPathElement);
|
|
|
|
public:
|
|
virtual JS::GCPtr<Layout::Node> create_layout_node(NonnullRefPtr<CSS::StyleProperties>) override;
|
|
|
|
JS::GCPtr<SVGGeometryElement const> path_or_shape() const;
|
|
|
|
protected:
|
|
SVGTextPathElement(DOM::Document&, DOM::QualifiedName);
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
};
|
|
|
|
}
|