LibWeb: Implement size attribute of CountQueuingStrategy

Co-authored-by: Matthew Olsson <mattco@serenityos.org>
This commit is contained in:
Shannon Booth 2023-06-23 08:46:46 +12:00 committed by Andreas Kling
commit 49689e5d8e
Notes: sideshowbarker 2024-07-17 23:07:41 +09:00
5 changed files with 41 additions and 1 deletions

View file

@ -31,6 +31,8 @@ public:
return m_high_water_mark;
}
WebIDL::ExceptionOr<JS::NonnullGCPtr<WebIDL::CallbackType>> size();
private:
explicit CountQueuingStrategy(JS::Realm&, double high_water_mark);