/* * Copyright (c) 2018-2020, Andreas Kling * Copyright (c) 2021, Tobias Christiansen * Copyright (c) 2021-2024, Sam Atkins * Copyright (c) 2022-2023, MacDue * * SPDX-License-Identifier: BSD-2-Clause */ #include "UnresolvedStyleValue.h" #include namespace Web::CSS { String UnresolvedStyleValue::to_string() const { if (m_original_source_text.has_value()) return *m_original_source_text; return MUST(String::join(' ', m_values)); } bool UnresolvedStyleValue::equals(CSSStyleValue const& other) const { if (type() != other.type()) return false; // This is a case where comparing the strings actually makes sense. return to_string() == other.to_string(); } }