mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 16:47:45 +00:00
LibWeb: Implement SVGStopElement (<stop>)
This is used to specify the color/position of color stops for SVG gradients.
This commit is contained in:
parent
297d8eebcd
commit
b19d2634f6
7 changed files with 116 additions and 1 deletions
7
Userland/Libraries/LibWeb/SVG/SVGStopElement.idl
Normal file
7
Userland/Libraries/LibWeb/SVG/SVGStopElement.idl
Normal file
|
@ -0,0 +1,7 @@
|
|||
#import <SVG/SVGElement.idl>
|
||||
#import <SVG/SVGAnimatedNumber.idl>
|
||||
|
||||
[Exposed=Window]
|
||||
interface SVGStopElement : SVGElement {
|
||||
[SameObject] readonly attribute SVGAnimatedNumber offset;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue