LibWeb: Implement DataTransferItem.prototype.getAsFile()

This is used on imgur after drag-and-dropping an image onto its page.
This commit is contained in:
Timothy Flynn 2024-08-22 14:25:14 -04:00 committed by Tim Ledbetter
commit b978dba8bd
Notes: github-actions[bot] 2024-08-23 09:11:45 +00:00
5 changed files with 36 additions and 1 deletions

View file

@ -25,6 +25,8 @@ public:
String kind() const;
String type() const;
JS::GCPtr<FileAPI::File> get_as_file() const;
private:
DataTransferItem(JS::Realm&, JS::NonnullGCPtr<DataTransfer>, size_t item_index);