/* * Copyright (c) 2018-2020, Andreas Kling * Copyright (c) 2021, Tobias Christiansen * Copyright (c) 2021-2023, Sam Atkins * Copyright (c) 2022-2023, MacDue * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include namespace Web::CSS { class TimeStyleValue : public StyleValueWithDefaultOperators { public: static ErrorOr> create(Time time) { return adopt_nonnull_ref_or_enomem(new (nothrow) TimeStyleValue(move(time))); } virtual ~TimeStyleValue() override = default; Time const& time() const { return m_time; } virtual ErrorOr to_string() const override { return m_time.to_string(); } bool properties_equal(TimeStyleValue const& other) const { return m_time == other.m_time; } private: explicit TimeStyleValue(Time time) : StyleValueWithDefaultOperators(Type::Time) , m_time(move(time)) { } Time m_time; }; }