LibWeb: Implement DataTransferItemList.remove()

This commit is contained in:
Tim Ledbetter 2025-09-05 07:23:46 +01:00 committed by Jelle Raaijmakers
commit d9341adb1e
Notes: github-actions[bot] 2025-09-12 10:31:50 +00:00
9 changed files with 84 additions and 1 deletions

View file

@ -25,6 +25,7 @@ public:
String kind() const;
String type() const;
void set_item_index(Badge<DataTransfer>, Optional<size_t> index) { m_item_index = move(index); }
void get_as_string(GC::Ptr<WebIDL::CallbackType>) const;
GC::Ptr<FileAPI::File> get_as_file() const;