mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-03 08:08:43 +00:00
LibWeb: Add SVG <rect>
element and test case :^)
This commit is contained in:
parent
aa2f20fb60
commit
1dde6a0a2b
Notes:
sideshowbarker
2024-07-17 19:00:39 +09:00
Author: https://github.com/AtkinsSJ
Commit: 1dde6a0a2b
Pull-request: https://github.com/SerenityOS/serenity/pull/12444
Reviewed-by: https://github.com/awesomekling
11 changed files with 225 additions and 1 deletions
9
Userland/Libraries/LibWeb/SVG/SVGRectElement.idl
Normal file
9
Userland/Libraries/LibWeb/SVG/SVGRectElement.idl
Normal file
|
@ -0,0 +1,9 @@
|
|||
[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;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue