mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 17:07:34 +00:00
LibWeb: Implement SVGAnimatedString
This commit is contained in:
parent
d503fd51ec
commit
ddf601830a
7 changed files with 135 additions and 0 deletions
6
Userland/Libraries/LibWeb/SVG/SVGAnimatedString.idl
Normal file
6
Userland/Libraries/LibWeb/SVG/SVGAnimatedString.idl
Normal file
|
@ -0,0 +1,6 @@
|
|||
// https://svgwg.org/svg2-draft/types.html#InterfaceSVGAnimatedString
|
||||
[Exposed=Window]
|
||||
interface SVGAnimatedString {
|
||||
attribute DOMString baseVal;
|
||||
[ImplementedAs=base_val] readonly attribute DOMString animVal;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue