mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-07 00:56:14 +00:00
LibWeb: Remove outdated FIXME about ACID2
I should have removed this in 1fa5fba432.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user