mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-03 16:16:43 +00:00
LibWeb: Begin implementing SVGRectElement's SVGAnimatedLength attributes
This commit is contained in:
parent
7a6b4e33ba
commit
57296393ed
Notes:
sideshowbarker
2024-07-17 16:58:51 +09:00
Author: https://github.com/trflynn89
Commit: 57296393ed
Pull-request: https://github.com/SerenityOS/serenity/pull/13175
4 changed files with 77 additions and 6 deletions
|
@ -1,11 +1,12 @@
|
|||
#import <SVG/SVGAnimatedLength.idl>
|
||||
#import <SVG/SVGGeometryElement.idl>
|
||||
|
||||
[Exposed=Window]
|
||||
interface SVGRectElement : SVGGeometryElement {
|
||||
// [SameObject] readonly attribute SVGAnimatedLength x;
|
||||
// [SameObject] readonly attribute SVGAnimatedLength y;
|
||||
// [SameObject] readonly attribute SVGAnimatedLength width;
|
||||
// [SameObject] readonly attribute SVGAnimatedLength height;
|
||||
// [SameObject] readonly attribute SVGAnimatedLength rx;
|
||||
// [SameObject] readonly attribute SVGAnimatedLength ry;
|
||||
[SameObject] readonly attribute SVGAnimatedLength x;
|
||||
[SameObject] readonly attribute SVGAnimatedLength y;
|
||||
[SameObject] readonly attribute SVGAnimatedLength width;
|
||||
[SameObject] readonly attribute SVGAnimatedLength height;
|
||||
[SameObject] readonly attribute SVGAnimatedLength rx;
|
||||
[SameObject] readonly attribute SVGAnimatedLength ry;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue