1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:07:46 +00:00

LibWeb: Make CSS::QualifiedStyleRule's prelude StyleComponentValueRule

This commit is contained in:
Sam Atkins 2021-06-29 17:03:25 +01:00 committed by Andreas Kling
parent 54e1180f61
commit d6b4022b58
4 changed files with 18 additions and 21 deletions

View file

@ -1,5 +1,6 @@
/*
* Copyright (c) 2020-2021, the SerenityOS developers.
* Copyright (c) 2021, Sam Atkins <atkinssj@gmail.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
@ -42,7 +43,7 @@ public:
Vector<StyleComponentValueRule> parse_as_list_of_comma_separated_component_values();
Vector<CSS::Selector::ComplexSelector> parse_selectors(Vector<String> parts);
Vector<CSS::Selector::ComplexSelector> parse_selectors(Vector<StyleComponentValueRule> parts);
// FIXME: https://www.w3.org/TR/selectors-4/
Optional<String> parse_a_selector() { return {}; }