mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-25 14:05:15 +00:00
There are a handful of FIXME's here, but this seems generally good. Note that CSS *values* don't get serialized in a spec-compliant way since we currently rely on StyleValue::to_string() which is ad-hoc.
37 lines
1,000 B
C++
37 lines
1,000 B
C++
/*
|
|
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/CSS/CSSStyleDeclaration.h>
|
|
|
|
namespace Web::CSS {
|
|
|
|
class ResolvedCSSStyleDeclaration final : public CSSStyleDeclaration {
|
|
public:
|
|
static NonnullRefPtr<ResolvedCSSStyleDeclaration> create(DOM::Element& element)
|
|
{
|
|
return adopt_ref(*new ResolvedCSSStyleDeclaration(element));
|
|
}
|
|
|
|
virtual ~ResolvedCSSStyleDeclaration() override;
|
|
|
|
virtual size_t length() const override;
|
|
virtual String item(size_t index) const override;
|
|
virtual Optional<StyleProperty> property(PropertyID) const override;
|
|
virtual bool set_property(PropertyID, StringView css_text) override;
|
|
|
|
virtual String serialized() const override;
|
|
|
|
private:
|
|
explicit ResolvedCSSStyleDeclaration(DOM::Element&);
|
|
|
|
RefPtr<StyleValue> style_value_for_property(Layout::NodeWithStyle const&, PropertyID) const;
|
|
|
|
NonnullRefPtr<DOM::Element> m_element;
|
|
};
|
|
|
|
}
|