ladybird/Userland/Libraries/LibWeb/SVG/SVGTextPositioningElement.idl
Shannon Booth 4fe0cbcf85 LibWeb: Use 'FIXME' extended attribute where possible
This improves the debuggability of many live web pages :^)
2024-05-19 16:24:11 +02:00

12 lines
547 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;
};