/* * Copyright (c) 2024, Aliaksandr Kalenik * * SPDX-License-Identifier: BSD-2-Clause */ #include #include #include #include namespace Web::DOM { GC::Ref create_adopted_style_sheets_list(Node& document_or_shadow_root) { auto adopted_style_sheets = WebIDL::ObservableArray::create(document_or_shadow_root.realm()); adopted_style_sheets->set_on_set_an_indexed_value_callback([&document_or_shadow_root](JS::Value& value) -> WebIDL::ExceptionOr { auto& vm = document_or_shadow_root.vm(); auto style_sheet = value.as_if(); if (!style_sheet) return vm.throw_completion(JS::ErrorType::NotAnObjectOfType, "CSSStyleSheet"); // 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()) return WebIDL::NotAllowedError::create(document_or_shadow_root.realm(), "StyleSheet's constructed flag is not set."_utf16); if (!style_sheet->constructed() || style_sheet->constructor_document().ptr() != &document_or_shadow_root.document()) return WebIDL::NotAllowedError::create(document_or_shadow_root.realm(), "Sharing a StyleSheet between documents is not allowed."_utf16); CSS::Invalidation::invalidate_style_after_adopting_style_sheet(document_or_shadow_root, *style_sheet); return {}; }); adopted_style_sheets->set_on_delete_an_indexed_value_callback([&document_or_shadow_root](JS::Value value) -> WebIDL::ExceptionOr { auto& style_sheet = value.as(); CSS::Invalidation::invalidate_style_after_removing_adopted_style_sheet(document_or_shadow_root, style_sheet); return {}; }); return adopted_style_sheets; } }