mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-05 15:49:15 +00:00
This reverts 0e3487b9ab
.
Back when I made that change, I thought we could make our StyleValue
classes match the typed-om definitions directly. However, they have
different requirements. Typed-om types need to be mutable and GCed,
whereas StyleValues are immutable and ideally wouldn't require a JS VM.
While I was already making such a cataclysmic change, I've moved it into
the StyleValues directory, because it *not* being there has bothered me
for a long time. 😅
51 lines
1.7 KiB
C++
51 lines
1.7 KiB
C++
/*
|
|
* Copyright (c) 2025, Sam Atkins <sam@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/CSS/CSSStyleDeclaration.h>
|
|
#include <LibWeb/CSS/Descriptor.h>
|
|
#include <LibWeb/CSS/DescriptorID.h>
|
|
|
|
namespace Web::CSS {
|
|
|
|
// A non-spec base class for descriptor-list classes
|
|
class CSSDescriptors : public CSSStyleDeclaration {
|
|
WEB_PLATFORM_OBJECT(CSSDescriptors, CSSStyleDeclaration);
|
|
|
|
public:
|
|
virtual ~CSSDescriptors() override;
|
|
|
|
virtual size_t length() const override;
|
|
virtual String item(size_t index) const override;
|
|
virtual WebIDL::ExceptionOr<void> set_property(StringView property, StringView value, StringView priority) override;
|
|
virtual WebIDL::ExceptionOr<String> remove_property(StringView property) override;
|
|
virtual String get_property_value(StringView property) const override;
|
|
virtual StringView get_property_priority(StringView property) const override;
|
|
|
|
Vector<Descriptor> const& descriptors() const { return m_descriptors; }
|
|
RefPtr<StyleValue const> descriptor(DescriptorID) const;
|
|
RefPtr<StyleValue const> descriptor_or_initial_value(DescriptorID) const;
|
|
virtual String serialized() const override;
|
|
|
|
virtual WebIDL::ExceptionOr<void> set_css_text(StringView) override;
|
|
|
|
protected:
|
|
CSSDescriptors(JS::Realm&, AtRuleID, Vector<Descriptor>);
|
|
|
|
private:
|
|
bool set_a_css_declaration(DescriptorID, NonnullRefPtr<StyleValue const>, Important);
|
|
|
|
virtual void visit_edges(Visitor&) override;
|
|
|
|
AtRuleID m_at_rule_id;
|
|
Vector<Descriptor> m_descriptors;
|
|
};
|
|
|
|
bool is_shorthand(AtRuleID, DescriptorID);
|
|
void for_each_expanded_longhand(AtRuleID, DescriptorID, RefPtr<StyleValue const>, Function<void(DescriptorID, RefPtr<StyleValue const>)>);
|
|
|
|
}
|