LibWeb: Move CSS Parser into new Web::CSS::Parser namespace

The goal here is to move the parser-internal classes into this namespace
so they can have more convenient names without causing collisions. The
Parser itself won't collide, and would be more convenient to just
remain `CSS::Parser`, but having a namespace and a class with the same
name makes C++ unhappy.
This commit is contained in:
Sam Atkins 2022-04-12 12:00:07 +01:00 committed by Andreas Kling
parent 1304bf5a21
commit c449cabae3
Notes: sideshowbarker 2024-07-17 11:53:05 +09:00
23 changed files with 61 additions and 58 deletions

View file

@ -65,7 +65,7 @@ DOM::ExceptionOr<void> PropertyOwningCSSStyleDeclaration::set_property(PropertyI
return {};
// 5. Let component value list be the result of parsing value for property property.
auto component_value_list = parse_css_value(CSS::ParsingContext {}, value, property_id);
auto component_value_list = parse_css_value(CSS::Parser::ParsingContext {}, value, property_id);
// 6. If component value list is null, then return.
if (!component_value_list)