mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 15:43:20 +00:00

This allows the Notification object to be created in javascript without any additional functionalities. It passes two wpt tests which require a call to the notification constructor with no arguments. https://wpt.live/notifications/constructor-basic.https.html https://wpt.live/notifications/constructor-invalid.https.html
39 lines
981 B
C++
39 lines
981 B
C++
/*
|
|
* Copyright (c) 2025, Niccolo Antonelli-Dziri <niccolo.antonelli-dziri@protonmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibJS/Runtime/Realm.h>
|
|
#include <LibWeb/Bindings/Intrinsics.h>
|
|
#include <LibWeb/Bindings/NotificationPrototype.h>
|
|
#include <LibWeb/NotificationsAPI/Notification.h>
|
|
|
|
namespace Web::NotificationsAPI {
|
|
|
|
GC_DEFINE_ALLOCATOR(Notification);
|
|
|
|
Notification::Notification(JS::Realm& realm)
|
|
: DOM::EventTarget(realm)
|
|
{
|
|
}
|
|
|
|
// https://notifications.spec.whatwg.org/#constructors
|
|
WebIDL::ExceptionOr<GC::Ref<Notification>> Notification::construct_impl(
|
|
JS::Realm& realm,
|
|
String, // FIXME: title is unused
|
|
Optional<NotificationOptions>) // FIXME: options is unused
|
|
{
|
|
|
|
// FIXME: all of the steps specified in the spec
|
|
|
|
return realm.create<Notification>(realm);
|
|
}
|
|
|
|
void Notification::initialize(JS::Realm& realm)
|
|
{
|
|
WEB_SET_PROTOTYPE_FOR_INTERFACE(Notification);
|
|
Base::initialize(realm);
|
|
}
|
|
|
|
}
|