2020-07-31 23:05:43 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2020, The SerenityOS developers.
|
|
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-07-31 23:05:43 -03:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <LibWeb/HTML/HTMLElement.h>
|
|
|
|
|
|
|
|
|
|
namespace Web::HTML {
|
|
|
|
|
|
|
|
|
|
class HTMLMediaElement : public HTMLElement {
|
|
|
|
|
public:
|
|
|
|
|
using WrapperType = Bindings::HTMLMediaElementWrapper;
|
|
|
|
|
|
2021-02-07 07:20:15 -03:00
|
|
|
HTMLMediaElement(DOM::Document&, QualifiedName);
|
2020-07-31 23:05:43 -03:00
|
|
|
virtual ~HTMLMediaElement() override;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|