1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 23:14:59 +00:00
serenity/Userland/Libraries/LibWeb/HTML/HTMLSlotElement.h
Timothy Flynn 7870f10aa8 LibWeb: Introduce the slot concept for HTML slot elements
A slot is an HTMLSlotElement. It may have any number of slottable nodes
assigned to it.
2023-09-13 13:45:47 +02:00

30 lines
632 B
C++

/*
* Copyright (c) 2020, the SerenityOS developers.
* Copyright (c) 2023, Tim Flynn <trflynn89@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibWeb/DOM/Slot.h>
#include <LibWeb/HTML/HTMLElement.h>
namespace Web::HTML {
class HTMLSlotElement final
: public HTMLElement
, public DOM::Slot {
WEB_PLATFORM_OBJECT(HTMLSlotElement, HTMLElement);
public:
virtual ~HTMLSlotElement() override;
private:
HTMLSlotElement(DOM::Document&, DOM::QualifiedName);
virtual void initialize(JS::Realm&) override;
virtual void visit_edges(JS::Cell::Visitor&) override;
};
}