LibWeb: Implement HTMLMarqueeElement.scrollDelay

This commit is contained in:
Jamie Mansfield
2024-07-13 00:33:26 +01:00
committed by Andreas Kling
parent 2a408ecfbc
commit a917f8124c
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);