Serenity Operating System
1/*
2 * Copyright (c) 2020, the SerenityOS developers.
3 *
4 * SPDX-License-Identifier: BSD-2-Clause
5 */
6
7#pragma once
8
9#include <LibWeb/HTML/HTMLElement.h>
10
11namespace Web::HTML {
12
13class HTMLPictureElement final : public HTMLElement {
14 WEB_PLATFORM_OBJECT(HTMLPictureElement, HTMLElement);
15
16public:
17 virtual ~HTMLPictureElement() override;
18
19private:
20 HTMLPictureElement(DOM::Document&, DOM::QualifiedName);
21
22 virtual JS::ThrowCompletionOr<void> initialize(JS::Realm&) override;
23};
24
25}