mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 03:37:45 +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,13 +58,10 @@ Optional<NonnullRefPtr<StyleValue>> StyleProperties::property(CSS::PropertyID id
|
||||||
|
|
||||||
auto it = m_property_values.find((unsigned)id);
|
auto it = m_property_values.find((unsigned)id);
|
||||||
if (it == m_property_values.end()) {
|
if (it == m_property_values.end()) {
|
||||||
if (is_inherited_property(id)) {
|
if (is_inherited_property(id))
|
||||||
return fetch_inherited(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;
|
auto& value = it->value;
|
||||||
if (value->is_initial())
|
if (value->is_initial())
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue