ladybird/Libraries/LibWeb/SVG/SVGTextPositioningElement.idl

14 lines
592 B
Text
Raw Normal View History

#import <SVG/SVGAnimatedLengthList.idl>
#import <SVG/SVGAnimatedNumberList.idl>
#import <SVG/SVGTextContentElement.idl>
// https://svgwg.org/svg2-draft/text.html#InterfaceSVGTextPositioningElement
[Exposed=Window]
interface SVGTextPositioningElement : SVGTextContentElement {
[SameObject] readonly attribute SVGAnimatedLengthList x;
[SameObject] readonly attribute SVGAnimatedLengthList y;
[SameObject] readonly attribute SVGAnimatedLengthList dx;
[SameObject] readonly attribute SVGAnimatedLengthList dy;
[SameObject] readonly attribute SVGAnimatedNumberList rotate;
};