2020-01-18 09:38:21 +01:00
|
|
|
/*
|
2024-10-04 13:19:50 +02:00
|
|
|
* Copyright (c) 2018-2021, Andreas Kling <andreas@ladybird.org>
|
2021-02-21 18:44:17 +02:00
|
|
|
* Copyright (c) 2021, the SerenityOS developers.
|
2024-06-22 11:12:44 +01:00
|
|
|
* Copyright (c) 2024, Jamie Mansfield <jmansfield@cadixdev.org>
|
2020-01-18 09:38:21 +01:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 09:38:21 +01:00
|
|
|
*/
|
|
|
|
|
|
2026-04-18 10:54:06 +02:00
|
|
|
#include <LibWeb/Bindings/HTMLStyleElement.h>
|
2020-07-28 19:20:11 +02:00
|
|
|
#include <LibWeb/HTML/HTMLStyleElement.h>
|
2019-09-29 17:43:30 +02:00
|
|
|
|
2020-07-28 18:20:36 +02:00
|
|
|
namespace Web::HTML {
|
2020-03-07 10:27:02 +01:00
|
|
|
|
2024-11-15 04:01:23 +13:00
|
|
|
GC_DEFINE_ALLOCATOR(HTMLStyleElement);
|
2023-11-19 19:47:52 +01:00
|
|
|
|
2022-02-18 21:00:52 +01:00
|
|
|
HTMLStyleElement::HTMLStyleElement(DOM::Document& document, DOM::QualifiedName qualified_name)
|
2021-02-07 11:20:15 +01:00
|
|
|
: HTMLElement(document, move(qualified_name))
|
2019-09-29 17:43:30 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-14 13:21:51 -06:00
|
|
|
HTMLStyleElement::~HTMLStyleElement() = default;
|
2019-09-29 17:43:30 +02:00
|
|
|
|
2023-08-07 08:41:28 +02:00
|
|
|
void HTMLStyleElement::initialize(JS::Realm& realm)
|
2023-01-10 06:28:20 -05:00
|
|
|
{
|
2024-03-16 13:13:08 +01:00
|
|
|
WEB_SET_PROTOTYPE_FOR_INTERFACE(HTMLStyleElement);
|
2025-04-20 16:22:57 +02:00
|
|
|
Base::initialize(realm);
|
2023-01-10 06:28:20 -05:00
|
|
|
}
|
|
|
|
|
|
2022-08-28 13:42:07 +02:00
|
|
|
void HTMLStyleElement::visit_edges(Cell::Visitor& visitor)
|
|
|
|
|
{
|
|
|
|
|
Base::visit_edges(visitor);
|
2026-02-05 16:06:29 +00:00
|
|
|
visit_style_element_edges(visitor);
|
2022-08-28 13:42:07 +02:00
|
|
|
}
|
|
|
|
|
|
2026-06-10 14:58:06 -05:00
|
|
|
void HTMLStyleElement::adopted_from(DOM::Document& old_document)
|
|
|
|
|
{
|
|
|
|
|
Base::adopted_from(old_document);
|
|
|
|
|
|
|
|
|
|
retarget_style_load_event_delayer(document());
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-18 13:36:27 +01:00
|
|
|
void HTMLStyleElement::children_changed(ChildrenChangedMetadata const& metadata)
|
2019-09-29 17:43:30 +02:00
|
|
|
{
|
2025-01-27 01:16:33 +13:00
|
|
|
Base::children_changed(metadata);
|
2026-06-03 14:55:54 +01:00
|
|
|
update_a_style_block_for_dynamic_change();
|
2019-09-29 17:43:30 +02:00
|
|
|
}
|
|
|
|
|
|
2022-02-25 22:05:42 +01:00
|
|
|
void HTMLStyleElement::inserted()
|
|
|
|
|
{
|
2023-06-08 16:07:12 +01:00
|
|
|
Base::inserted();
|
2026-06-03 14:55:54 +01:00
|
|
|
update_a_style_block_for_dynamic_change();
|
2022-02-25 22:05:42 +01:00
|
|
|
}
|
|
|
|
|
|
2026-04-16 20:04:54 +01:00
|
|
|
void HTMLStyleElement::removed_from(IsSubtreeRoot is_subtree_root, Node* old_ancestor, Node& old_root)
|
2019-09-29 17:43:30 +02:00
|
|
|
{
|
2026-04-16 20:04:54 +01:00
|
|
|
Base::removed_from(is_subtree_root, old_ancestor, old_root);
|
2026-06-03 14:55:54 +01:00
|
|
|
update_a_style_block_for_dynamic_change();
|
2022-08-07 13:14:54 +02:00
|
|
|
}
|
|
|
|
|
|
2025-03-22 11:33:59 +00:00
|
|
|
void HTMLStyleElement::attribute_changed(FlyString const& name, Optional<String> const& old_value, Optional<String> const& value, Optional<FlyString> const& namespace_)
|
|
|
|
|
{
|
|
|
|
|
Base::attribute_changed(name, old_value, value, namespace_);
|
2026-06-03 14:55:54 +01:00
|
|
|
style_element_attribute_changed(name, value);
|
2025-03-22 11:33:59 +00:00
|
|
|
}
|
|
|
|
|
|
2024-06-22 11:12:44 +01:00
|
|
|
// https://html.spec.whatwg.org/multipage/semantics.html#dom-style-disabled
|
|
|
|
|
bool HTMLStyleElement::disabled()
|
|
|
|
|
{
|
|
|
|
|
// 1. If this does not have an associated CSS style sheet, return false.
|
|
|
|
|
if (!sheet())
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
// 2. If this's associated CSS style sheet's disabled flag is set, return true.
|
|
|
|
|
if (sheet()->disabled())
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
// 3. Return false.
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// https://html.spec.whatwg.org/multipage/semantics.html#dom-style-disabled
|
|
|
|
|
void HTMLStyleElement::set_disabled(bool disabled)
|
|
|
|
|
{
|
|
|
|
|
// 1. If this does not have an associated CSS style sheet, return.
|
|
|
|
|
if (!sheet())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
// 2. If the given value is true, set this's associated CSS style sheet's disabled flag.
|
|
|
|
|
// Otherwise, unset this's associated CSS style sheet's disabled flag.
|
|
|
|
|
sheet()->set_disabled(disabled);
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-20 11:31:57 +02:00
|
|
|
// https://html.spec.whatwg.org/multipage/semantics.html#contributes-a-script-blocking-style-sheet
|
|
|
|
|
bool HTMLStyleElement::contributes_a_script_blocking_style_sheet() const
|
|
|
|
|
{
|
2026-06-03 14:55:54 +01:00
|
|
|
return style_element_contributes_a_script_blocking_style_sheet();
|
2025-04-20 11:31:57 +02:00
|
|
|
}
|
|
|
|
|
|
2020-03-07 10:27:02 +01:00
|
|
|
}
|