From 240fb93cf1295f30510deb522a6b86416cb20816 Mon Sep 17 00:00:00 2001 From: MacDue Date: Sat, 1 Oct 2022 01:48:10 +0100 Subject: [PATCH] LibWeb: Remove FIXME for double-position `linear-gradient()` color stops I added these in #14977, but forgot to remove this FIXME. --- Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp b/Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp index c9df4f7fbcf..c68e5603a31 100644 --- a/Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp +++ b/Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp @@ -2430,10 +2430,6 @@ RefPtr Parser::parse_linear_gradient_function(ComponentValue const& // = // , [ ? , ]# - // FIXME: Support multi-position color stops - // https://developer.mozilla.org/en-US/docs/Web/CSS/gradient/linear-gradient#gradient_with_multi-position_color_stops - // These are shown on MDN... Though do not appear in the W3 spec(?) - enum class ElementType { Garbage, ColorStop,