LibWeb: Implement HTMLMarqueeElement.scrollDelay

This commit is contained in:
Jamie Mansfield 2024-07-13 00:33:26 +01:00 committed by Andreas Kling
commit a917f8124c
Notes: sideshowbarker 2024-07-17 07:25:39 +09:00
4 changed files with 22 additions and 1 deletions

View file

@ -23,6 +23,9 @@ public:
WebIDL::UnsignedLong scroll_amount();
WebIDL::ExceptionOr<void> set_scroll_amount(WebIDL::UnsignedLong);
WebIDL::UnsignedLong scroll_delay();
WebIDL::ExceptionOr<void> set_scroll_delay(WebIDL::UnsignedLong);
private:
HTMLMarqueeElement(DOM::Document&, DOM::QualifiedName);