mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 18:17:22 +02:00
19 lines
652 B
Plaintext
19 lines
652 B
Plaintext
#import <SVG/SVGElement.idl>
|
|
|
|
[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;
|
|
|
|
};
|
|
|
|
// FIXME: SVGGradientElement includes SVGURIReference;
|