mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 10:12:25 -05:00
11 lines
547 B
Text
11 lines
547 B
Text
#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;
|
|
};
|