mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 06:17:35 +00:00
LibWeb: Split SVGTextContentElement into spec defined subclasses
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)
This commit is contained in:
parent
77e6dbab33
commit
0e12503586
14 changed files with 195 additions and 45 deletions
11
Userland/Libraries/LibWeb/SVG/SVGTextPositioningElement.idl
Normal file
11
Userland/Libraries/LibWeb/SVG/SVGTextPositioningElement.idl
Normal file
|
@ -0,0 +1,11 @@
|
|||
#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;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue