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

LibWeb: Rename Element::specified_css_values() => computed_css_values()

Let's make it very clear that these are *computed* values, and not at
all the specified values. The specified values are currently discarded
by the CSS cascade algorithm.
This commit is contained in:
Andreas Kling 2022-03-15 19:41:35 +01:00
parent 43ef813f3d
commit e31fe3eeb8
6 changed files with 23 additions and 23 deletions

View file

@ -271,12 +271,12 @@ void Element::recompute_style()
{
set_needs_style_update(false);
VERIFY(parent());
auto new_specified_css_values = document().style_computer().compute_style(*this);
auto new_computed_css_values = document().style_computer().compute_style(*this);
if (m_specified_css_values && *m_specified_css_values == *new_specified_css_values)
if (m_computed_css_values && *m_computed_css_values == *new_computed_css_values)
return;
m_specified_css_values = move(new_specified_css_values);
m_computed_css_values = move(new_computed_css_values);
document().invalidate_layout();
}