/* * Copyright (c) 2020, the SerenityOS developers. * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include namespace Web::HTML { class HTMLParamElement final : public HTMLElement { WEB_PLATFORM_OBJECT(HTMLParamElement, HTMLElement); JS_DECLARE_ALLOCATOR(HTMLParamElement); public: virtual ~HTMLParamElement() override; private: HTMLParamElement(DOM::Document&, DOM::QualifiedName); virtual void initialize(JS::Realm&) override; }; }