/* * Copyright (c) 2022, DerpyCrabs * * SPDX-License-Identifier: BSD-2-Clause */ #include #include #include #include #include namespace Web::Geometry { WebIDL::ExceptionOr> DOMRectList::create(JS::Realm& realm, Vector> rect_handles) { Vector> rects; for (auto& rect : rect_handles) rects.append(*rect); return MUST_OR_THROW_OOM(realm.heap().allocate(realm, realm, move(rects))); } DOMRectList::DOMRectList(JS::Realm& realm, Vector> rects) : Bindings::LegacyPlatformObject(realm) , m_rects(move(rects)) { } DOMRectList::~DOMRectList() = default; JS::ThrowCompletionOr DOMRectList::initialize(JS::Realm& realm) { MUST_OR_THROW_OOM(Base::initialize(realm)); set_prototype(&Bindings::ensure_web_prototype(realm, "DOMRectList")); return {}; } // https://drafts.fxtf.org/geometry-1/#dom-domrectlist-length u32 DOMRectList::length() const { return m_rects.size(); } // https://drafts.fxtf.org/geometry-1/#dom-domrectlist-item DOMRect const* DOMRectList::item(u32 index) const { // The item(index) method, when invoked, must return null when // index is greater than or equal to the number of DOMRect objects associated with the DOMRectList. // Otherwise, the DOMRect object at index must be returned. Indices are zero-based. if (index >= m_rects.size()) return nullptr; return m_rects[index]; } bool DOMRectList::is_supported_property_index(u32 index) const { return index < m_rects.size(); } WebIDL::ExceptionOr DOMRectList::item_value(size_t index) const { if (index >= m_rects.size()) return JS::js_undefined(); return m_rects[index].ptr(); } }