
The original name was based on the window.getComputedStyle() API. However, "Computed" in "getComputedStyle" is actually a misnomer that the platform is stuck with due to backwards compatibility. What getComputedStyle() returns is actually a mix of computed and used values. The spec calls it the "resolved" values. So let's call this declaration subclass "ResolvedCSSStyleDeclaration" to match.
35 lines
951 B
C++
35 lines
951 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;
|
|
|
|
private:
|
|
explicit ResolvedCSSStyleDeclaration(DOM::Element&);
|
|
|
|
RefPtr<StyleValue> style_value_for_property(Layout::NodeWithStyle const&, PropertyID) const;
|
|
|
|
NonnullRefPtr<DOM::Element> m_element;
|
|
};
|
|
|
|
}
|