diff --git a/Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp b/Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp index c5ddd476e13..b91a5484da8 100644 --- a/Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp +++ b/Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp @@ -540,8 +540,9 @@ Variant Parser::consume_a_qualif rule.declarations = move(first.get>()); } - // FIXME: If any remaining items of child rules are lists of declarations, replace them with nested declarations rules - // containing the list as its sole child. Assign child rules to rule’s child rules. + // If any remaining items of child rules are lists of declarations, replace them with nested declarations rules + // containing the list as its sole child. Assign child rules to rule’s child rules. + // NOTE: We do this later, when converting the QualifiedRule to a CSSRule type. // If rule is valid in the current context, return it; otherwise return an invalid rule error. if (is_valid_in_the_current_context(rule))