LibWeb/CSS: Add FIXME that color-mix() now takes 1+ colors, not 2

Corresponds to 83c7bffe51
This commit is contained in:
Sam Atkins 2025-06-17 10:54:05 +01:00
parent af9a227ca3
commit a263ba78ed
Notes: github-actions[bot] 2025-06-17 11:39:39 +00:00

View file

@ -1788,7 +1788,8 @@ RefPtr<CSSStyleValue const> Parser::parse_color_mix_function(TokenStream<Compone
};
};
// color-mix() = color-mix( <color-interpolation-method> , [ <color> && <percentage [0,100]>? ]#{2})
// color-mix() = color-mix( <color-interpolation-method> , [ <color> && <percentage [0,100]>? ]#)
// FIXME: Update color-mix to accept 1+ colors instead of exactly 2.
auto transaction = tokens.begin_transaction();
tokens.discard_whitespace();