mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-04 15:19:16 +00:00
When no better reification form is available, we produce an opaque CSSStyleValue with a serialized value. For starters, this will be the only way to reify, and then we'll add others later.
36 lines
996 B
C++
36 lines
996 B
C++
/*
|
|
* Copyright (c) 2025, Sam Atkins <sam@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/Bindings/PlatformObject.h>
|
|
|
|
namespace Web::CSS {
|
|
|
|
// https://drafts.css-houdini.org/css-typed-om-1/#cssstylevalue
|
|
class CSSStyleValue : public Bindings::PlatformObject {
|
|
WEB_PLATFORM_OBJECT(CSSStyleValue, Bindings::PlatformObject);
|
|
GC_DECLARE_ALLOCATOR(CSSStyleValue);
|
|
|
|
public:
|
|
[[nodiscard]] static GC::Ref<CSSStyleValue> create(JS::Realm&, String associated_property, String constructed_from_string);
|
|
|
|
virtual ~CSSStyleValue() override = default;
|
|
|
|
virtual String to_string() const;
|
|
|
|
private:
|
|
explicit CSSStyleValue(JS::Realm&, String associated_property, String constructed_from_string);
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
|
|
// https://drafts.css-houdini.org/css-typed-om-1/#dom-cssstylevalue-associatedproperty-slot
|
|
Optional<String> m_associated_property;
|
|
|
|
Optional<String> m_constructed_from_string;
|
|
};
|
|
|
|
}
|