LibWeb: Use [Reflect] to implement HTMLPreElement.width

This commit is contained in:
Tim Ledbetter 2024-05-21 13:42:31 +01:00 committed by Andreas Kling
commit 58bb5e1f7a
Notes: sideshowbarker 2024-07-17 07:38:17 +09:00
3 changed files with 1 additions and 20 deletions

View file

@ -22,9 +22,6 @@ public:
// https://www.w3.org/TR/html-aria/#el-pre
virtual Optional<ARIA::Role> default_role() const override { return ARIA::Role::generic; }
WebIDL::Long width() const;
WebIDL::ExceptionOr<void> set_width(WebIDL::Long);
private:
HTMLPreElement(DOM::Document&, DOM::QualifiedName);