mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-27 03:37:53 +00:00
LibWeb: Implement the DataTransferItemList length attribute
This commit is contained in:
committed by
Andreas Kling
parent
74d9cfbf2a
commit
843f8f04a5
@@ -41,6 +41,14 @@ void DataTransferItemList::visit_edges(JS::Cell::Visitor& visitor)
|
||||
visitor.visit(m_data_transfer);
|
||||
}
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/dnd.html#dom-datatransferitemlist-length
|
||||
WebIDL::UnsignedLong DataTransferItemList::length() const
|
||||
{
|
||||
// The length attribute must return zero if the object is in the disabled mode; otherwise it must return the number
|
||||
// of items in the drag data store item list.
|
||||
return m_data_transfer->length();
|
||||
}
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/dnd.html#dom-datatransferitemlist-add
|
||||
WebIDL::ExceptionOr<JS::GCPtr<DataTransferItem>> DataTransferItemList::add(String const& data, String const& type)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user