LibWeb: Implement the DataTransferItemList indexed getter

This commit is contained in:
Timothy Flynn
2024-08-21 10:04:16 -04:00
committed by Andreas Kling
parent 843f8f04a5
commit ceb9e30d42
6 changed files with 36 additions and 1 deletions

View File

@@ -33,6 +33,8 @@ private:
virtual void initialize(JS::Realm&) override;
virtual void visit_edges(JS::Cell::Visitor&) override;
virtual Optional<JS::Value> item_value(size_t index) const override;
JS::NonnullGCPtr<DataTransfer> m_data_transfer;
};