2020-01-18 09:38:21 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 09:38:21 +01:00
|
|
|
*/
|
|
|
|
|
2019-10-04 21:05:52 +02:00
|
|
|
#pragma once
|
|
|
|
|
2023-01-28 22:23:16 +00:00
|
|
|
#include <LibWeb/ARIA/Roles.h>
|
2020-07-26 15:08:16 +02:00
|
|
|
#include <LibWeb/HTML/HTMLElement.h>
|
2022-06-27 19:48:54 +01:00
|
|
|
#include <LibWeb/HTML/WindowEventHandlers.h>
|
2019-10-04 21:05:52 +02:00
|
|
|
|
2020-07-28 18:20:36 +02:00
|
|
|
namespace Web::HTML {
|
2020-03-07 10:27:02 +01:00
|
|
|
|
2022-06-27 19:48:54 +01:00
|
|
|
class HTMLBodyElement final
|
|
|
|
: public HTMLElement
|
|
|
|
, public WindowEventHandlers {
|
2022-08-28 13:42:07 +02:00
|
|
|
WEB_PLATFORM_OBJECT(HTMLBodyElement, HTMLElement);
|
2020-07-27 05:04:26 +01:00
|
|
|
|
2022-08-28 13:42:07 +02:00
|
|
|
public:
|
2019-10-04 21:05:52 +02:00
|
|
|
virtual ~HTMLBodyElement() override;
|
|
|
|
|
2023-07-03 17:08:37 +02:00
|
|
|
virtual void attribute_changed(DeprecatedFlyString const&, DeprecatedString const&) override;
|
2020-07-26 20:01:35 +02:00
|
|
|
virtual void apply_presentational_hints(CSS::StyleProperties&) const override;
|
2020-03-07 11:17:18 +01:00
|
|
|
|
2022-11-28 17:58:13 -06:00
|
|
|
// https://www.w3.org/TR/html-aria/#el-body
|
2023-01-28 22:23:16 +00:00
|
|
|
virtual Optional<ARIA::Role> default_role() const override { return ARIA::Role::generic; };
|
2022-11-28 17:58:13 -06:00
|
|
|
|
2020-03-07 11:17:18 +01:00
|
|
|
private:
|
2022-08-28 13:42:07 +02:00
|
|
|
HTMLBodyElement(DOM::Document&, DOM::QualifiedName);
|
|
|
|
|
2023-03-10 21:16:18 +01:00
|
|
|
// ^DOM::Node
|
|
|
|
virtual bool is_html_body_element() const override { return true; }
|
|
|
|
|
2023-01-28 12:33:35 -05:00
|
|
|
virtual JS::ThrowCompletionOr<void> initialize(JS::Realm&) override;
|
2023-01-10 06:28:20 -05:00
|
|
|
|
2021-02-03 22:47:50 +01:00
|
|
|
// ^HTML::GlobalEventHandlers
|
2023-04-06 07:25:18 +02:00
|
|
|
virtual EventTarget& global_event_handlers_to_event_target(FlyString const& event_name) override;
|
2021-02-03 22:47:50 +01:00
|
|
|
|
2022-06-27 19:48:54 +01:00
|
|
|
// ^HTML::WindowEventHandlers
|
|
|
|
virtual EventTarget& window_event_handlers_to_event_target() override;
|
|
|
|
|
2020-07-26 20:01:35 +02:00
|
|
|
RefPtr<CSS::ImageStyleValue> m_background_style_value;
|
2019-10-04 21:05:52 +02:00
|
|
|
};
|
2019-10-06 20:47:57 +02:00
|
|
|
|
|
|
|
}
|
2023-03-10 21:16:18 +01:00
|
|
|
|
|
|
|
namespace Web::DOM {
|
|
|
|
template<>
|
|
|
|
inline bool Node::fast_is<HTML::HTMLBodyElement>() const { return is_html_body_element(); }
|
|
|
|
}
|