2024-03-08 19:27:24 +01:00
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2024, Aliaksandr Kalenik <kalenik.aliaksandr@gmail.com>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <LibWeb/CSS/StyleComputer.h>
|
|
|
|
|
#include <LibWeb/DOM/AdoptedStyleSheets.h>
|
|
|
|
|
#include <LibWeb/DOM/Document.h>
|
|
|
|
|
|
|
|
|
|
namespace Web::DOM {
|
|
|
|
|
|
2024-11-15 04:01:23 +13:00
|
|
|
|
GC::Ref<WebIDL::ObservableArray> create_adopted_style_sheets_list(Document& document)
|
2024-03-08 19:27:24 +01:00
|
|
|
|
{
|
|
|
|
|
auto adopted_style_sheets = WebIDL::ObservableArray::create(document.realm());
|
|
|
|
|
adopted_style_sheets->set_on_set_an_indexed_value_callback([&document](JS::Value& value) -> WebIDL::ExceptionOr<void> {
|
|
|
|
|
auto& vm = document.vm();
|
|
|
|
|
if (!value.is_object())
|
|
|
|
|
return vm.throw_completion<JS::TypeError>(JS::ErrorType::NotAnObjectOfType, "CSSStyleSheet");
|
|
|
|
|
auto& object = value.as_object();
|
|
|
|
|
if (!is<CSS::CSSStyleSheet>(object))
|
|
|
|
|
return vm.throw_completion<JS::TypeError>(JS::ErrorType::NotAnObjectOfType, "CSSStyleSheet");
|
|
|
|
|
auto& style_sheet = static_cast<CSS::CSSStyleSheet&>(object);
|
|
|
|
|
|
|
|
|
|
// The set an indexed value algorithm for adoptedStyleSheets, given value and index, is the following:
|
|
|
|
|
// 1. If value’s constructed flag is not set, or its constructor document is not equal to this
|
|
|
|
|
// DocumentOrShadowRoot's node document, throw a "NotAllowedError" DOMException.
|
|
|
|
|
if (!style_sheet.constructed())
|
2024-10-12 20:56:21 +02:00
|
|
|
|
return WebIDL::NotAllowedError::create(document.realm(), "StyleSheet's constructed flag is not set."_string);
|
2024-03-08 19:27:24 +01:00
|
|
|
|
if (!style_sheet.constructed() || style_sheet.constructor_document().ptr() != &document)
|
2024-10-12 20:56:21 +02:00
|
|
|
|
return WebIDL::NotAllowedError::create(document.realm(), "Sharing a StyleSheet between documents is not allowed."_string);
|
2024-03-08 19:27:24 +01:00
|
|
|
|
|
|
|
|
|
document.style_computer().load_fonts_from_sheet(style_sheet);
|
|
|
|
|
document.style_computer().invalidate_rule_cache();
|
2024-09-04 10:01:08 +02:00
|
|
|
|
document.invalidate_style(DOM::StyleInvalidationReason::AdoptedStyleSheetsList);
|
2024-03-08 19:27:24 +01:00
|
|
|
|
return {};
|
|
|
|
|
});
|
2025-01-10 17:25:42 +03:00
|
|
|
|
adopted_style_sheets->set_on_delete_an_indexed_value_callback([&document](JS::Value value) -> WebIDL::ExceptionOr<void> {
|
|
|
|
|
VERIFY(value.is_object());
|
|
|
|
|
auto& object = value.as_object();
|
|
|
|
|
VERIFY(is<CSS::CSSStyleSheet>(object));
|
|
|
|
|
auto& style_sheet = static_cast<CSS::CSSStyleSheet&>(object);
|
|
|
|
|
|
|
|
|
|
document.style_computer().unload_fonts_from_sheet(style_sheet);
|
2024-03-08 19:27:24 +01:00
|
|
|
|
document.style_computer().invalidate_rule_cache();
|
2024-09-04 10:01:08 +02:00
|
|
|
|
document.invalidate_style(DOM::StyleInvalidationReason::AdoptedStyleSheetsList);
|
2024-03-08 19:27:24 +01:00
|
|
|
|
return {};
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
return adopted_style_sheets;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|