diff --git a/Userland/Libraries/LibWeb/CSS/StyleComputer.cpp b/Userland/Libraries/LibWeb/CSS/StyleComputer.cpp index 9b0e4afa33..c8ab27f583 100644 --- a/Userland/Libraries/LibWeb/CSS/StyleComputer.cpp +++ b/Userland/Libraries/LibWeb/CSS/StyleComputer.cpp @@ -452,7 +452,7 @@ struct MatchingDeclarations { Vector author_rules; }; -bool StyleComputer::expand_unresolved_values(DOM::Element& element, Vector const& source, Vector& dest) const +bool StyleComputer::expand_unresolved_values(DOM::Element& element, Vector const& source, Vector& dest, size_t source_start_index) const { // FIXME: Do this better! // We build a copy of the tree of StyleComponentValueRules, with all var()s replaced with their contents. @@ -468,7 +468,8 @@ bool StyleComputer::expand_unresolved_values(DOM::Element& element, Vector