2022-08-08 17:29:40 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
2022-09-25 21:12:50 -03:00
|
|
|
#include <LibWeb/Bindings/Intrinsics.h>
|
2022-08-08 17:29:40 -03:00
|
|
|
#include <LibWeb/WebGL/WebGLContextEvent.h>
|
|
|
|
|
|
|
|
|
|
namespace Web::WebGL {
|
|
|
|
|
|
2023-08-13 08:05:26 -03:00
|
|
|
JS::NonnullGCPtr<WebGLContextEvent> WebGLContextEvent::create(JS::Realm& realm, FlyString const& event_name, WebGLContextEventInit const& event_init)
|
2022-08-08 17:29:40 -03:00
|
|
|
{
|
2023-08-13 08:05:26 -03:00
|
|
|
return realm.heap().allocate<WebGLContextEvent>(realm, realm, event_name, event_init);
|
2022-08-08 17:29:40 -03:00
|
|
|
}
|
|
|
|
|
|
2023-03-05 07:01:48 -03:00
|
|
|
WebIDL::ExceptionOr<JS::NonnullGCPtr<WebGLContextEvent>> WebGLContextEvent::construct_impl(JS::Realm& realm, FlyString const& event_name, WebGLContextEventInit const& event_init)
|
2022-08-08 17:29:40 -03:00
|
|
|
{
|
2022-09-25 21:12:50 -03:00
|
|
|
return create(realm, event_name, event_init);
|
2022-08-08 17:29:40 -03:00
|
|
|
}
|
|
|
|
|
|
2023-03-05 07:01:48 -03:00
|
|
|
WebGLContextEvent::WebGLContextEvent(JS::Realm& realm, FlyString const& type, WebGLContextEventInit const& event_init)
|
2023-04-06 11:12:33 -03:00
|
|
|
: DOM::Event(realm, type, event_init)
|
2022-08-08 17:29:40 -03:00
|
|
|
, m_status_message(event_init.status_message)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
WebGLContextEvent::~WebGLContextEvent() = default;
|
|
|
|
|
|
2023-08-07 03:41:28 -03:00
|
|
|
void WebGLContextEvent::initialize(JS::Realm& realm)
|
2023-01-10 08:28:20 -03:00
|
|
|
{
|
2023-08-07 03:41:28 -03:00
|
|
|
Base::initialize(realm);
|
2023-01-10 08:28:20 -03:00
|
|
|
set_prototype(&Bindings::ensure_web_prototype<Bindings::WebGLContextEventPrototype>(realm, "WebGLContextEvent"));
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-08 17:29:40 -03:00
|
|
|
}
|