LibWeb: Add the missing CustomEvent IDL constructor

This commit is contained in:
Idan Horowitz 2021-09-29 20:32:29 +03:00 committed by Andreas Kling
commit 3b9e8ec597
Notes: sideshowbarker 2024-07-18 03:20:19 +09:00
3 changed files with 28 additions and 14 deletions

View file

@ -8,15 +8,6 @@
namespace Web::DOM {
CustomEvent::CustomEvent(FlyString const& event_name)
: Event(event_name)
{
}
CustomEvent::~CustomEvent()
{
}
void CustomEvent::visit_edges(JS::Cell::Visitor& visitor)
{
visitor.visit(m_detail);