2020-01-18 05:38:21 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 05:38:21 -03:00
|
|
|
*/
|
|
|
|
|
|
2020-03-07 06:32:51 -03:00
|
|
|
#include <LibWeb/CSS/StyleProperties.h>
|
|
|
|
|
#include <LibWeb/CSS/StyleValue.h>
|
|
|
|
|
#include <LibWeb/DOM/Document.h>
|
2020-07-26 10:08:16 -03:00
|
|
|
#include <LibWeb/HTML/HTMLBodyElement.h>
|
2022-03-07 19:08:26 -03:00
|
|
|
#include <LibWeb/HTML/Window.h>
|
2019-10-04 16:05:52 -03:00
|
|
|
|
2020-07-28 13:20:36 -03:00
|
|
|
namespace Web::HTML {
|
2020-03-07 06:27:02 -03:00
|
|
|
|
2022-02-18 17:00:52 -03:00
|
|
|
HTMLBodyElement::HTMLBodyElement(DOM::Document& document, DOM::QualifiedName qualified_name)
|
2021-02-07 07:20:15 -03:00
|
|
|
: HTMLElement(document, move(qualified_name))
|
2019-10-04 16:05:52 -03:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-14 16:21:51 -03:00
|
|
|
HTMLBodyElement::~HTMLBodyElement() = default;
|
2019-10-04 16:05:52 -03:00
|
|
|
|
2020-07-26 15:01:35 -03:00
|
|
|
void HTMLBodyElement::apply_presentational_hints(CSS::StyleProperties& style) const
|
2019-10-04 16:05:52 -03:00
|
|
|
{
|
|
|
|
|
for_each_attribute([&](auto& name, auto& value) {
|
2022-07-11 14:32:29 -03:00
|
|
|
if (name.equals_ignoring_case("bgcolor"sv)) {
|
2019-10-04 16:05:52 -03:00
|
|
|
auto color = Color::from_string(value);
|
|
|
|
|
if (color.has_value())
|
2020-07-26 15:01:35 -03:00
|
|
|
style.set_property(CSS::PropertyID::BackgroundColor, CSS::ColorStyleValue::create(color.value()));
|
2022-07-11 14:32:29 -03:00
|
|
|
} else if (name.equals_ignoring_case("text"sv)) {
|
2019-10-04 16:05:52 -03:00
|
|
|
auto color = Color::from_string(value);
|
|
|
|
|
if (color.has_value())
|
2020-07-26 15:01:35 -03:00
|
|
|
style.set_property(CSS::PropertyID::Color, CSS::ColorStyleValue::create(color.value()));
|
2022-07-11 14:32:29 -03:00
|
|
|
} else if (name.equals_ignoring_case("background"sv)) {
|
2021-02-23 16:42:32 -03:00
|
|
|
VERIFY(m_background_style_value);
|
2020-03-07 07:17:18 -03:00
|
|
|
style.set_property(CSS::PropertyID::BackgroundImage, *m_background_style_value);
|
2019-10-04 16:05:52 -03:00
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
2019-10-06 05:11:54 -03:00
|
|
|
|
2022-04-01 14:58:27 -03:00
|
|
|
void HTMLBodyElement::parse_attribute(FlyString const& name, String const& value)
|
2019-10-06 05:11:54 -03:00
|
|
|
{
|
2020-06-04 11:04:52 -03:00
|
|
|
HTMLElement::parse_attribute(name, value);
|
2022-07-11 14:32:29 -03:00
|
|
|
if (name.equals_ignoring_case("link"sv)) {
|
2019-10-06 05:11:54 -03:00
|
|
|
auto color = Color::from_string(value);
|
|
|
|
|
if (color.has_value())
|
|
|
|
|
document().set_link_color(color.value());
|
2022-07-11 14:32:29 -03:00
|
|
|
} else if (name.equals_ignoring_case("alink"sv)) {
|
2019-10-06 05:11:54 -03:00
|
|
|
auto color = Color::from_string(value);
|
|
|
|
|
if (color.has_value())
|
|
|
|
|
document().set_active_link_color(color.value());
|
2022-07-11 14:32:29 -03:00
|
|
|
} else if (name.equals_ignoring_case("vlink"sv)) {
|
2019-10-06 05:11:54 -03:00
|
|
|
auto color = Color::from_string(value);
|
|
|
|
|
if (color.has_value())
|
|
|
|
|
document().set_visited_link_color(color.value());
|
2022-07-11 14:32:29 -03:00
|
|
|
} else if (name.equals_ignoring_case("background"sv)) {
|
2021-10-22 16:55:27 -03:00
|
|
|
m_background_style_value = CSS::ImageStyleValue::create(document().parse_url(value));
|
2019-10-06 05:11:54 -03:00
|
|
|
}
|
2022-06-27 15:48:54 -03:00
|
|
|
|
|
|
|
|
#undef __ENUMERATE
|
|
|
|
|
#define __ENUMERATE(attribute_name, event_name) \
|
|
|
|
|
if (name == HTML::AttributeNames::attribute_name) { \
|
|
|
|
|
element_event_handler_attribute_changed(event_name, value); \
|
|
|
|
|
}
|
|
|
|
|
ENUMERATE_WINDOW_EVENT_HANDLERS(__ENUMERATE)
|
|
|
|
|
#undef __ENUMERATE
|
2019-10-06 05:11:54 -03:00
|
|
|
}
|
2020-03-07 06:27:02 -03:00
|
|
|
|
2022-06-27 15:20:09 -03:00
|
|
|
DOM::EventTarget& HTMLBodyElement::global_event_handlers_to_event_target(FlyString const& event_name)
|
2021-02-03 18:47:50 -03:00
|
|
|
{
|
|
|
|
|
// NOTE: This is a little weird, but IIUC document.body.onload actually refers to window.onload
|
2022-06-27 15:20:09 -03:00
|
|
|
// NOTE: document.body can return either a HTMLBodyElement or HTMLFrameSetElement, so both these elements must support this mapping.
|
|
|
|
|
if (DOM::is_window_reflecting_body_element_event_handler(event_name))
|
|
|
|
|
return document().window();
|
|
|
|
|
|
|
|
|
|
return *this;
|
2021-02-03 18:47:50 -03:00
|
|
|
}
|
|
|
|
|
|
2022-06-27 15:48:54 -03:00
|
|
|
DOM::EventTarget& HTMLBodyElement::window_event_handlers_to_event_target()
|
|
|
|
|
{
|
|
|
|
|
// All WindowEventHandlers on HTMLFrameSetElement (e.g. document.body.onrejectionhandled) are mapped to window.on{event}.
|
|
|
|
|
// NOTE: document.body can return either a HTMLBodyElement or HTMLFrameSetElement, so both these elements must support this mapping.
|
|
|
|
|
return document().window();
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-07 06:27:02 -03:00
|
|
|
}
|