LibWeb/SVG: Implement SVGTransformList.numberOfItems

This commit is contained in:
Jamie Mansfield 2024-06-02 12:48:35 +01:00 committed by Andreas Kling
commit 48e834918a
Notes: sideshowbarker 2024-07-17 05:18:58 +09:00
3 changed files with 9 additions and 1 deletions

View file

@ -23,6 +23,7 @@ public:
virtual ~SVGTransformList() override;
WebIDL::UnsignedLong length();
WebIDL::UnsignedLong number_of_items();
WebIDL::ExceptionOr<JS::NonnullGCPtr<SVGTransform>> get_item(WebIDL::UnsignedLong index);