ladybird/Userland/Libraries/LibWeb/SVG/SVGStopElement.idl
MacDue b19d2634f6 LibWeb: Implement SVGStopElement (<stop>)
This is used to specify the color/position of color stops for SVG
gradients.
2023-04-28 09:42:28 +02:00

8 lines
186 B
Plaintext

#import <SVG/SVGElement.idl>
#import <SVG/SVGAnimatedNumber.idl>
[Exposed=Window]
interface SVGStopElement : SVGElement {
[SameObject] readonly attribute SVGAnimatedNumber offset;
};