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/HTMLMediaElement.h>
|
|
|
|
|
|
|
|
namespace Web::HTML {
|
|
|
|
|
|
|
|
class HTMLAudioElement final : public HTMLMediaElement {
|
|
|
|
public:
|
|
|
|
using WrapperType = Bindings::HTMLAudioElementWrapper;
|
|
|
|
|
2021-02-07 11:20:15 +01:00
|
|
|
HTMLAudioElement(DOM::Document&, QualifiedName);
|
2020-08-01 03:04:26 +01:00
|
|
|
virtual ~HTMLAudioElement() override;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|