/* * Copyright (c) 2023, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include namespace Web::CSS { enum class Important { No, Yes, }; struct StyleProperty { ~StyleProperty(); Important important { Important::No }; CSS::PropertyID property_id; NonnullRefPtr value; FlyString custom_name {}; }; }