mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 16:57:46 +00:00
LibWeb: Implement SVGAnimatedNumber
See https://www.w3.org/TR/2013/WD-SVG2-20130409/types.html#InterfaceSVGAnimatedNumber
This commit is contained in:
parent
454ecf24ea
commit
66d1b78348
5 changed files with 79 additions and 0 deletions
6
Userland/Libraries/LibWeb/SVG/SVGAnimatedNumber.idl
Normal file
6
Userland/Libraries/LibWeb/SVG/SVGAnimatedNumber.idl
Normal file
|
@ -0,0 +1,6 @@
|
|||
// https://svgwg.org/svg2-draft/types.html#InterfaceSVGAnimatedNumber
|
||||
[Exposed=Window]
|
||||
interface SVGAnimatedNumber {
|
||||
attribute float baseVal;
|
||||
readonly attribute float animVal;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue