These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
9 lines
471 B
Text
9 lines
471 B
Text
// 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;
|
|
};
|