mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
20 lines
753 B
Text
20 lines
753 B
Text
#import <SVG/SVGElement.idl>
|
|
#import <SVG/SVGURIReference.idl>
|
|
|
|
// https://svgwg.org/svg2-draft/single-page.html#pservers-InterfaceSVGGradientElement
|
|
[Exposed=Window]
|
|
interface SVGGradientElement : SVGElement {
|
|
|
|
// Spread Method Types
|
|
const unsigned short SVG_SPREADMETHOD_UNKNOWN = 0;
|
|
const unsigned short SVG_SPREADMETHOD_PAD = 1;
|
|
const unsigned short SVG_SPREADMETHOD_REFLECT = 2;
|
|
const unsigned short SVG_SPREADMETHOD_REPEAT = 3;
|
|
|
|
[FIXME, SameObject] readonly attribute SVGAnimatedEnumeration gradientUnits;
|
|
[FIXME, SameObject] readonly attribute SVGAnimatedTransformList gradientTransform;
|
|
[FIXME, SameObject] readonly attribute SVGAnimatedEnumeration spreadMethod;
|
|
|
|
};
|
|
|
|
SVGGradientElement includes SVGURIReference;
|