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>
|
2021-02-03 18:47:50 -03:00
|
|
|
#include <LibWeb/DOM/Window.h>
|
2020-07-26 10:08:16 -03:00
|
|
|
#include <LibWeb/HTML/HTMLBodyElement.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
|
|
|
|
2021-02-07 07:20:15 -03:00
|
|
|
HTMLBodyElement::HTMLBodyElement(DOM::Document& document, QualifiedName qualified_name)
|
|
|
|
|
: HTMLElement(document, move(qualified_name))
|
2019-10-04 16:05:52 -03:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
HTMLBodyElement::~HTMLBodyElement()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
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) {
|
2019-12-18 08:44:13 -03:00
|
|
|
if (name.equals_ignoring_case("bgcolor")) {
|
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()));
|
2019-12-18 08:44:13 -03:00
|
|
|
} else if (name.equals_ignoring_case("text")) {
|
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()));
|
2019-12-18 08:44:13 -03:00
|
|
|
} else if (name.equals_ignoring_case("background")) {
|
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
|
|
|
|
2020-03-22 09:10:04 -03:00
|
|
|
void HTMLBodyElement::parse_attribute(const FlyString& name, const String& value)
|
2019-10-06 05:11:54 -03:00
|
|
|
{
|
2020-06-04 11:04:52 -03:00
|
|
|
HTMLElement::parse_attribute(name, value);
|
2019-12-18 08:44:13 -03:00
|
|
|
if (name.equals_ignoring_case("link")) {
|
2019-10-06 05:11:54 -03:00
|
|
|
auto color = Color::from_string(value);
|
|
|
|
|
if (color.has_value())
|
|
|
|
|
document().set_link_color(color.value());
|
2019-12-18 08:44:13 -03:00
|
|
|
} else if (name.equals_ignoring_case("alink")) {
|
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());
|
2019-12-18 08:44:13 -03:00
|
|
|
} else if (name.equals_ignoring_case("vlink")) {
|
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());
|
2020-03-07 07:17:18 -03:00
|
|
|
} else if (name.equals_ignoring_case("background")) {
|
2020-07-26 15:01:35 -03:00
|
|
|
m_background_style_value = CSS::ImageStyleValue::create(document().complete_url(value), const_cast<DOM::Document&>(document()));
|
2019-10-06 05:11:54 -03:00
|
|
|
}
|
|
|
|
|
}
|
2020-03-07 06:27:02 -03:00
|
|
|
|
2021-02-03 18:47:50 -03:00
|
|
|
DOM::EventTarget& HTMLBodyElement::global_event_handlers_to_event_target()
|
|
|
|
|
{
|
|
|
|
|
// NOTE: This is a little weird, but IIUC document.body.onload actually refers to window.onload
|
|
|
|
|
return document().window();
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-07 06:27:02 -03:00
|
|
|
}
|