ladybird/Userland/Libraries/LibWeb/CSS/ComputedCSSStyleDeclaration.h
Andreas Kling 99f9667e5d LibWeb: Simplify ComputedCSSStyleDeclaration property lookup
Factor out the per-property StyleValue generation to a separate function
so we don't have to repeat ourselves so much in property(). :^)
2021-09-18 13:14:40 +02:00

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 ComputedCSSStyleDeclaration final : public CSSStyleDeclaration {
public:
static NonnullRefPtr<ComputedCSSStyleDeclaration> create(DOM::Element& element)
{
return adopt_ref(*new ComputedCSSStyleDeclaration(element));
}
virtual ~ComputedCSSStyleDeclaration() 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 ComputedCSSStyleDeclaration(DOM::Element&);
RefPtr<StyleValue> style_value_for_property(Layout::NodeWithStyle const&, PropertyID) const;
NonnullRefPtr<DOM::Element> m_element;
};
}