LibWeb: Remove outdated FIXME

As of 020c4aa we parse all shorthands as `ShorthandStyleValue`s and thus
this FIXME is irrelevant
This commit is contained in:
Callum Law
2026-02-21 17:37:12 +13:00
committed by Tim Ledbetter
parent 83bd30b957
commit 21c7de49f8
Notes: github-actions[bot] 2026-02-21 06:34:46 +00:00

View File

@@ -1348,7 +1348,6 @@ String CSSStyleProperties::serialize_a_css_value(Vector<StyleProperty> list) con
return ShorthandStyleValue::create(shorthand_id, longhand_ids, longhand_values);
};
// FIXME: Not all shorthands are represented by ShorthandStyleValue, we still need to add support for those that don't.
return make_shorthand_value(shorthand.value())->to_string(SerializationMode::Normal);
}