2020-01-18 05:38:21 -03:00
|
|
|
/*
|
2021-03-08 09:40:53 -03:00
|
|
|
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
|
2021-02-21 13:44:17 -03:00
|
|
|
* Copyright (c) 2021, the SerenityOS developers.
|
2020-01-18 05:38:21 -03:00
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 05:38:21 -03:00
|
|
|
*/
|
|
|
|
|
|
2020-07-28 14:20:11 -03:00
|
|
|
#include <LibWeb/HTML/HTMLStyleElement.h>
|
2019-09-29 12:43:30 -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
|
|
|
HTMLStyleElement::HTMLStyleElement(DOM::Document& document, DOM::QualifiedName qualified_name)
|
2021-02-07 07:20:15 -03:00
|
|
|
: HTMLElement(document, move(qualified_name))
|
2019-09-29 12:43:30 -03:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-14 16:21:51 -03:00
|
|
|
HTMLStyleElement::~HTMLStyleElement() = default;
|
2019-09-29 12:43:30 -03:00
|
|
|
|
2023-01-28 14:33:35 -03:00
|
|
|
JS::ThrowCompletionOr<void> HTMLStyleElement::initialize(JS::Realm& realm)
|
2023-01-10 08:28:20 -03:00
|
|
|
{
|
2023-01-28 14:33:35 -03:00
|
|
|
MUST_OR_THROW_OOM(Base::initialize(realm));
|
2023-01-10 08:28:20 -03:00
|
|
|
set_prototype(&Bindings::ensure_web_prototype<Bindings::HTMLStyleElementPrototype>(realm, "HTMLStyleElement"));
|
2023-01-28 14:33:35 -03:00
|
|
|
|
|
|
|
|
return {};
|
2023-01-10 08:28:20 -03:00
|
|
|
}
|
|
|
|
|
|
2022-08-28 08:42:07 -03:00
|
|
|
void HTMLStyleElement::visit_edges(Cell::Visitor& visitor)
|
|
|
|
|
{
|
|
|
|
|
Base::visit_edges(visitor);
|
2023-06-08 12:07:12 -03:00
|
|
|
visitor.visit(m_style_element_utils.sheet());
|
2022-08-28 08:42:07 -03:00
|
|
|
}
|
|
|
|
|
|
2020-04-03 18:06:09 -03:00
|
|
|
void HTMLStyleElement::children_changed()
|
2019-09-29 12:43:30 -03:00
|
|
|
{
|
2023-06-08 12:07:12 -03:00
|
|
|
m_style_element_utils.update_a_style_block(*this);
|
|
|
|
|
Base::children_changed();
|
2019-09-29 12:43:30 -03:00
|
|
|
}
|
|
|
|
|
|
2022-02-25 18:05:42 -03:00
|
|
|
void HTMLStyleElement::inserted()
|
|
|
|
|
{
|
2023-06-08 12:07:12 -03:00
|
|
|
m_style_element_utils.update_a_style_block(*this);
|
|
|
|
|
Base::inserted();
|
2022-02-25 18:05:42 -03:00
|
|
|
}
|
|
|
|
|
|
2021-04-06 13:58:20 -03:00
|
|
|
void HTMLStyleElement::removed_from(Node* old_parent)
|
2019-09-29 12:43:30 -03:00
|
|
|
{
|
2023-06-08 12:07:12 -03:00
|
|
|
m_style_element_utils.update_a_style_block(*this);
|
|
|
|
|
Base::removed_from(old_parent);
|
2022-08-07 08:14:54 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// https://www.w3.org/TR/cssom/#dom-linkstyle-sheet
|
|
|
|
|
CSS::CSSStyleSheet* HTMLStyleElement::sheet()
|
|
|
|
|
{
|
|
|
|
|
// The sheet attribute must return the associated CSS style sheet for the node or null if there is no associated CSS style sheet.
|
2023-06-08 12:07:12 -03:00
|
|
|
return m_style_element_utils.sheet();
|
2021-09-29 18:46:16 -03:00
|
|
|
}
|
|
|
|
|
|
2021-10-15 15:38:39 -03:00
|
|
|
// https://www.w3.org/TR/cssom/#dom-linkstyle-sheet
|
2022-08-07 08:14:54 -03:00
|
|
|
CSS::CSSStyleSheet const* HTMLStyleElement::sheet() const
|
2021-09-30 20:13:56 -03:00
|
|
|
{
|
|
|
|
|
// The sheet attribute must return the associated CSS style sheet for the node or null if there is no associated CSS style sheet.
|
2023-06-08 12:07:12 -03:00
|
|
|
return m_style_element_utils.sheet();
|
2021-09-30 20:13:56 -03:00
|
|
|
}
|
|
|
|
|
|
2020-03-07 06:27:02 -03:00
|
|
|
}
|