You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the algorithm for serializing CSSMathValue, it repeatedly ends up calling "serialzie a CSSNumericValue", because that's what CSSNumericArray contains. eg:
For each arg in this’s values internal slot, serialize arg with nested and paren-less both true, and append the result to s, appending a ", " between successive values.
Append ")" to s and return s.
However, serialize a CSSNumericValue doesn't make use of those arguments. It only accepts the minimum/maximum arguments that are relevant for CSSUnitValue. It needs to take the nested and paren-less arguments, and then pass them to "serialize a CSSMathValue".