/* * Copyright (c) 2023, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #include #include namespace Web::CSS { StyleProperty::~StyleProperty() = default; bool StyleProperty::operator==(StyleProperty const& other) const { if (important != other.important || property_id != other.property_id || custom_name != other.custom_name) return false; return value->equals(*other.value); } }