2020-08-01 05:04:26 +03:00
|
|
|
/*
|
2021-04-28 23:46:44 +03:00
|
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
2020-08-01 05:04:26 +03:00
|
|
|
*
|
2021-04-22 11:24:48 +03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-08-01 05:04:26 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <LibWeb/HTML/HTMLElement.h>
|
|
|
|
|
|
|
|
namespace Web::HTML {
|
|
|
|
|
|
|
|
// NOTE: This element is marked as obsolete, but is still listed as required by the specification.
|
|
|
|
class HTMLFrameElement final : public HTMLElement {
|
2022-08-28 14:42:07 +03:00
|
|
|
WEB_PLATFORM_OBJECT(HTMLFrameElement, HTMLElement);
|
|
|
|
|
2020-08-01 05:04:26 +03:00
|
|
|
public:
|
2022-08-28 14:42:07 +03:00
|
|
|
virtual ~HTMLFrameElement() override;
|
2020-08-01 05:04:26 +03:00
|
|
|
|
2022-08-28 14:42:07 +03:00
|
|
|
private:
|
2022-02-18 23:00:52 +03:00
|
|
|
HTMLFrameElement(DOM::Document&, DOM::QualifiedName);
|
2023-01-10 14:28:20 +03:00
|
|
|
|
2023-01-28 20:33:35 +03:00
|
|
|
virtual JS::ThrowCompletionOr<void> initialize(JS::Realm&) override;
|
2023-01-10 14:28:20 +03:00
|
|
|
|
2022-11-05 06:58:14 +03:00
|
|
|
// ^DOM::Element
|
|
|
|
virtual i32 default_tab_index_value() const override;
|
2020-08-01 05:04:26 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|