ladybird/Libraries/LibWeb/HTML/HTMLSourceElement.h
Andreas Kling 7269fc3e52 LibWeb: Pass old parent's root to Node::removed_from()
This will allow nodes to access the root they've just been removed from.
2025-01-23 21:38:31 +01:00

29 lines
633 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(DOM::Node* old_parent, DOM::Node& old_root) override;
};
}