LibWeb/CSS: Expose StyleProperty outside of LibWeb

This commit is contained in:
Sam Atkins 2025-09-26 14:30:43 +01:00 committed by Andreas Kling
parent aa8bf6372f
commit 1ccf37a6ac
Notes: github-actions[bot] 2025-09-26 20:33:12 +00:00

View file

@ -16,11 +16,11 @@ enum class Important : u8 {
Yes,
};
struct StyleProperty {
struct WEB_API StyleProperty {
~StyleProperty();
Important important { Important::No };
CSS::PropertyID property_id;
PropertyID property_id;
NonnullRefPtr<StyleValue const> value;
FlyString custom_name {};