ladybird/Userland/Libraries/LibWeb/HTML/HTMLSourceElement.h
Timothy Flynn 05019746d2 LibWeb: Partially implement HTMLSourceElement's insertion/removal steps
This implements the substeps which concern HTMLMediaElement parents.
2023-05-13 15:51:44 +02:00

28 lines
579 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);
public:
virtual ~HTMLSourceElement() override;
private:
HTMLSourceElement(DOM::Document&, DOM::QualifiedName);
virtual JS::ThrowCompletionOr<void> initialize(JS::Realm&) override;
virtual void inserted() override;
virtual void removed_from(DOM::Node*) override;
};
}