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
|
|
|
*/
|
|
|
|
|
2020-03-07 10:32:51 +01:00
|
|
|
#include <LibWeb/CSS/StyleProperties.h>
|
|
|
|
#include <LibWeb/CSS/StyleValue.h>
|
|
|
|
#include <LibWeb/DOM/Document.h>
|
2021-02-03 22:47:50 +01:00
|
|
|
#include <LibWeb/DOM/Window.h>
|
2020-07-26 15:08:16 +02:00
|
|
|
#include <LibWeb/HTML/HTMLBodyElement.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
|
|
|
|
2021-02-07 11:20:15 +01:00
|
|
|
HTMLBodyElement::HTMLBodyElement(DOM::Document& document, QualifiedName qualified_name)
|
|
|
|
: HTMLElement(document, move(qualified_name))
|
2019-10-04 21:05:52 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
HTMLBodyElement::~HTMLBodyElement()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-07-26 20:01:35 +02:00
|
|
|
void HTMLBodyElement::apply_presentational_hints(CSS::StyleProperties& style) const
|
2019-10-04 21:05:52 +02:00
|
|
|
{
|
|
|
|
for_each_attribute([&](auto& name, auto& value) {
|
2019-12-18 12:44:13 +01:00
|
|
|
if (name.equals_ignoring_case("bgcolor")) {
|
2019-10-04 21:05:52 +02:00
|
|
|
auto color = Color::from_string(value);
|
|
|
|
if (color.has_value())
|
2020-07-26 20:01:35 +02:00
|
|
|
style.set_property(CSS::PropertyID::BackgroundColor, CSS::ColorStyleValue::create(color.value()));
|
2019-12-18 12:44:13 +01:00
|
|
|
} else if (name.equals_ignoring_case("text")) {
|
2019-10-04 21:05:52 +02:00
|
|
|
auto color = Color::from_string(value);
|
|
|
|
if (color.has_value())
|
2020-07-26 20:01:35 +02:00
|
|
|
style.set_property(CSS::PropertyID::Color, CSS::ColorStyleValue::create(color.value()));
|
2019-12-18 12:44:13 +01:00
|
|
|
} else if (name.equals_ignoring_case("background")) {
|
2021-02-23 20:42:32 +01:00
|
|
|
VERIFY(m_background_style_value);
|
2020-03-07 11:17:18 +01:00
|
|
|
style.set_property(CSS::PropertyID::BackgroundImage, *m_background_style_value);
|
2019-10-04 21:05:52 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2019-10-06 10:11:54 +02:00
|
|
|
|
2020-03-22 13:10:04 +01:00
|
|
|
void HTMLBodyElement::parse_attribute(const FlyString& name, const String& value)
|
2019-10-06 10:11:54 +02:00
|
|
|
{
|
2020-06-04 16:04:52 +02:00
|
|
|
HTMLElement::parse_attribute(name, value);
|
2019-12-18 12:44:13 +01:00
|
|
|
if (name.equals_ignoring_case("link")) {
|
2019-10-06 10:11:54 +02:00
|
|
|
auto color = Color::from_string(value);
|
|
|
|
if (color.has_value())
|
|
|
|
document().set_link_color(color.value());
|
2019-12-18 12:44:13 +01:00
|
|
|
} else if (name.equals_ignoring_case("alink")) {
|
2019-10-06 10:11:54 +02:00
|
|
|
auto color = Color::from_string(value);
|
|
|
|
if (color.has_value())
|
|
|
|
document().set_active_link_color(color.value());
|
2019-12-18 12:44:13 +01:00
|
|
|
} else if (name.equals_ignoring_case("vlink")) {
|
2019-10-06 10:11:54 +02:00
|
|
|
auto color = Color::from_string(value);
|
|
|
|
if (color.has_value())
|
|
|
|
document().set_visited_link_color(color.value());
|
2020-03-07 11:17:18 +01:00
|
|
|
} else if (name.equals_ignoring_case("background")) {
|
2021-09-30 02:18:30 +02:00
|
|
|
m_background_style_value = CSS::ImageStyleValue::create(document().parse_url(value), &document());
|
2019-10-06 10:11:54 +02:00
|
|
|
}
|
|
|
|
}
|
2020-03-07 10:27:02 +01:00
|
|
|
|
2021-02-03 22:47:50 +01: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 10:27:02 +01:00
|
|
|
}
|