
Note that as of this commit, there aren't any such throwers, and the call site in Heap::allocate will drop exceptions on the floor. This commit only serves to change the declaration of the overrides, make sure they return an empty value, and to propagate OOM errors frm their base initialize invocations.
38 lines
984 B
C++
38 lines
984 B
C++
/*
|
|
* Copyright (c) 2022, DerpyCrabs <derpycrabs@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Vector.h>
|
|
#include <LibWeb/Bindings/LegacyPlatformObject.h>
|
|
#include <LibWeb/Geometry/DOMRect.h>
|
|
|
|
namespace Web::Geometry {
|
|
|
|
// https://drafts.fxtf.org/geometry-1/#DOMRectList
|
|
class DOMRectList final : public Bindings::LegacyPlatformObject {
|
|
WEB_PLATFORM_OBJECT(DOMRectList, Bindings::LegacyPlatformObject);
|
|
|
|
public:
|
|
static JS::NonnullGCPtr<DOMRectList> create(JS::Realm&, Vector<JS::Handle<DOMRect>>);
|
|
|
|
virtual ~DOMRectList() override;
|
|
|
|
u32 length() const;
|
|
DOMRect const* item(u32 index) const;
|
|
|
|
virtual bool is_supported_property_index(u32) const override;
|
|
virtual JS::Value item_value(size_t index) const override;
|
|
|
|
private:
|
|
DOMRectList(JS::Realm&, Vector<JS::NonnullGCPtr<DOMRect>>);
|
|
|
|
virtual JS::ThrowCompletionOr<void> initialize(JS::Realm&) override;
|
|
|
|
Vector<JS::NonnullGCPtr<DOMRect>> m_rects;
|
|
};
|
|
|
|
}
|