mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-03 07:07:23 +00:00
As part of this move properties/methods to the correct subclass
(position related properties go under SVGTextPositioningElement).
SVG text element hierarchy:
SVGTextContentElement
^- SVGTextPositioningElement
^- SVGTextElement
^- SVGTSpanElement
^- SVGTextPathElement (TODO)
^- SVGTRefElement (TODO)
12 lines
552 B
Plaintext
12 lines
552 B
Plaintext
#import <SVG/SVGTextContentElement.idl>
|
|
|
|
// https://svgwg.org/svg2-draft/text.html#InterfaceSVGTextPositioningElement
|
|
[Exposed=Window]
|
|
interface SVGTextPositioningElement : SVGTextContentElement {
|
|
// FIXME: [SameObject] readonly attribute SVGAnimatedLengthList x;
|
|
// FIXME: [SameObject] readonly attribute SVGAnimatedLengthList y;
|
|
// FIXME: [SameObject] readonly attribute SVGAnimatedLengthList dx;
|
|
// FIXME: [SameObject] readonly attribute SVGAnimatedLengthList dy;
|
|
// FIXME: [SameObject] readonly attribute SVGAnimatedNumberList rotate;
|
|
};
|