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:
parent
a57615c2b4
commit
9509f2ff87
1 changed files with 2 additions and 5 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue