2025-08-11 14:28:57 +01:00
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2025, Sam Atkins <sam@ladybird.org>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <LibWeb/Bindings/PlatformObject.h>
|
|
|
|
|
#include <LibWeb/CSS/StyleValues/StyleValue.h>
|
|
|
|
|
#include <LibWeb/DOM/AbstractElement.h>
|
|
|
|
|
#include <LibWeb/WebIDL/Types.h>
|
|
|
|
|
|
|
|
|
|
namespace Web::CSS {
|
|
|
|
|
|
|
|
|
|
// https://drafts.css-houdini.org/css-typed-om-1/#stylepropertymapreadonly
|
|
|
|
|
class StylePropertyMapReadOnly : public Bindings::PlatformObject {
|
|
|
|
|
WEB_PLATFORM_OBJECT(StylePropertyMapReadOnly, Bindings::PlatformObject);
|
|
|
|
|
GC_DECLARE_ALLOCATOR(StylePropertyMapReadOnly);
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
[[nodiscard]] static GC::Ref<StylePropertyMapReadOnly> create_computed_style(JS::Realm&, DOM::AbstractElement);
|
|
|
|
|
|
|
|
|
|
virtual ~StylePropertyMapReadOnly() override;
|
|
|
|
|
|
|
|
|
|
WebIDL::ExceptionOr<Variant<GC::Ref<CSSStyleValue>, Empty>> get(String property);
|
|
|
|
|
WebIDL::ExceptionOr<Vector<GC::Ref<CSSStyleValue>>> get_all(String property);
|
|
|
|
|
WebIDL::ExceptionOr<bool> has(String property);
|
|
|
|
|
WebIDL::UnsignedLong size() const;
|
|
|
|
|
|
|
|
|
|
protected:
|
2025-08-13 13:52:59 +01:00
|
|
|
|
using Source = Variant<DOM::AbstractElement, GC::Ref<CSSStyleDeclaration>>;
|
|
|
|
|
explicit StylePropertyMapReadOnly(JS::Realm&, Source);
|
2025-08-11 14:28:57 +01:00
|
|
|
|
|
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
|
|
|
virtual void visit_edges(Cell::Visitor&) override;
|
|
|
|
|
|
2025-09-26 12:08:54 +01:00
|
|
|
|
static RefPtr<StyleValue const> get_style_value(Source&, PropertyNameAndID const& property);
|
2025-08-13 15:26:54 +01:00
|
|
|
|
|
2025-08-11 14:28:57 +01:00
|
|
|
|
// https://drafts.css-houdini.org/css-typed-om-1/#dom-stylepropertymapreadonly-declarations-slot
|
|
|
|
|
// A StylePropertyMapReadOnly object has a [[declarations]] internal slot, which is a map reflecting the CSS
|
|
|
|
|
// declaration block’s declarations.
|
2025-08-13 13:52:59 +01:00
|
|
|
|
// NB: We just directly refer to our source, at least for now.
|
|
|
|
|
Source m_declarations;
|
2025-08-11 14:28:57 +01:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|