mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 16:27:35 +00:00
LibWeb: Make factory methods of Geometry::DOMRect fallible
This commit is contained in:
parent
9b190b9509
commit
ec0049441c
4 changed files with 9 additions and 8 deletions
|
@ -15,8 +15,8 @@ class DOMRect final : public DOMRectReadOnly {
|
|||
WEB_PLATFORM_OBJECT(DOMRect, DOMRectReadOnly);
|
||||
|
||||
public:
|
||||
static JS::NonnullGCPtr<DOMRect> construct_impl(JS::Realm&, double x = 0, double y = 0, double width = 0, double height = 0);
|
||||
static JS::NonnullGCPtr<DOMRect> create(JS::Realm&, Gfx::FloatRect const&);
|
||||
static WebIDL::ExceptionOr<JS::NonnullGCPtr<DOMRect>> construct_impl(JS::Realm&, double x = 0, double y = 0, double width = 0, double height = 0);
|
||||
static WebIDL::ExceptionOr<JS::NonnullGCPtr<DOMRect>> create(JS::Realm&, Gfx::FloatRect const&);
|
||||
|
||||
virtual ~DOMRect() override;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue