Files
ladybird/Libraries/LibWeb/HTML/HTMLSourceElement.h
2026-04-22 14:05:49 +01:00

31 lines
731 B
C++

/*
* Copyright (c) 2020, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibWeb/HTML/HTMLElement.h>
namespace Web::HTML {
class HTMLSourceElement final : public HTMLElement {
WEB_PLATFORM_OBJECT(HTMLSourceElement, HTMLElement);
GC_DECLARE_ALLOCATOR(HTMLSourceElement);
public:
virtual ~HTMLSourceElement() override;
private:
HTMLSourceElement(DOM::Document&, DOM::QualifiedName);
virtual void initialize(JS::Realm&) override;
virtual void inserted() override;
virtual void removed_from(IsSubtreeRoot, DOM::Node* old_ancestor, DOM::Node& old_root) override;
virtual void moved_from(IsSubtreeRoot, GC::Ptr<Node> old_ancestor) override;
};
}