1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 06:37:35 +00:00

LibWeb: Remove outdated FIXME about ACID2

I should have removed this in 1fa5fba432.
This commit is contained in:
Andreas Kling 2021-08-26 17:39:57 +02:00
parent a57615c2b4
commit 9509f2ff87

View file

@ -58,12 +58,9 @@ Optional<NonnullRefPtr<StyleValue>> StyleProperties::property(CSS::PropertyID id
auto it = m_property_values.find((unsigned)id);
if (it == m_property_values.end()) {
if (is_inherited_property(id)) {
if (is_inherited_property(id))
return fetch_inherited(id);
} else {
// FIXME: This causes the Acid2 eyes to disappear for some reason
return fetch_initial(id);
}
return fetch_initial(id);
}
auto& value = it->value;