LibWeb: Remove outdated FIXME about path() in basic-shape parser

Remove a FIXME stating that path() was not implemented in
basic-shape parsing, as it is now supported.
This commit is contained in:
mikiubo
2026-03-15 23:27:32 +01:00
committed by Tim Ledbetter
parent 01224dedde
commit b5e90e0350
Notes: github-actions[bot] 2026-03-21 02:45:56 +00:00

View File

@@ -4103,7 +4103,6 @@ RefPtr<StyleValue const> Parser::parse_basic_shape_value(TokenStream<ComponentVa
return {};
};
// FIXME: Implement path(). See: https://www.w3.org/TR/css-shapes-1/#basic-shape-functions
if (function_name.equals_ignoring_ascii_case("inset"sv)) {
// inset() = inset( <length-percentage>{1,4} [ round <'border-radius'> ]? )
auto arguments_tokens = TokenStream { component_value.function().value };