2020-08-01 05:05:43 +03:00
|
|
|
/*
|
2021-04-28 23:46:44 +03:00
|
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
2020-08-01 05:05:43 +03:00
|
|
|
*
|
2021-04-22 11:24:48 +03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-08-01 05:05:43 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <LibWeb/HTML/HTMLElement.h>
|
|
|
|
|
|
|
|
namespace Web::HTML {
|
|
|
|
|
|
|
|
class HTMLParamElement final : public HTMLElement {
|
|
|
|
public:
|
|
|
|
using WrapperType = Bindings::HTMLParamElementWrapper;
|
|
|
|
|
2022-02-18 23:00:52 +03:00
|
|
|
HTMLParamElement(DOM::Document&, DOM::QualifiedName);
|
2020-08-01 05:05:43 +03:00
|
|
|
virtual ~HTMLParamElement() override;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|