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