LibWeb: Add SVG <line> element and test case :^)

This commit is contained in:
Sam Atkins 2022-02-11 16:56:36 +00:00 committed by Andreas Kling
commit 17912330c4
Notes: sideshowbarker 2024-07-17 19:00:28 +09:00
11 changed files with 126 additions and 0 deletions

View file

@ -0,0 +1,7 @@
[Exposed=Window]
interface SVGLineElement : SVGGeometryElement {
// [SameObject] readonly attribute SVGAnimatedLength x1;
// [SameObject] readonly attribute SVGAnimatedLength y1;
// [SameObject] readonly attribute SVGAnimatedLength x2;
// [SameObject] readonly attribute SVGAnimatedLength y2;
};