LibWeb: Rename ValueType::OpenTypeTag to ValueType::OpentypeTag

This is the correct capitalization in line with what it is called in the
spec "opentype-tag".
This commit is contained in:
Callum Law 2025-08-06 15:21:41 +12:00 committed by Sam Atkins
commit 2af7016a77
Notes: github-actions[bot] 2025-08-11 16:11:54 +00:00
5 changed files with 7 additions and 58 deletions

View file

@ -4717,7 +4717,7 @@ RefPtr<StyleValue const> Parser::parse_value(ValueType value_type, TokenStream<C
return parse_length_value(tokens);
case ValueType::Number:
return parse_number_value(tokens);
case ValueType::OpenTypeTag:
case ValueType::OpentypeTag:
return parse_opentype_tag_value(tokens);
case ValueType::Paint:
return parse_paint_value(tokens);