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

@ -169,7 +169,7 @@ Optional<Parser::PropertyAndValue> Parser::parse_css_value_for_properties(Readon
return parsed.release_value();
if (auto parsed = parse_for_type(ValueType::Ratio); parsed.has_value())
return parsed.release_value();
if (auto parsed = parse_for_type(ValueType::OpenTypeTag); parsed.has_value())
if (auto parsed = parse_for_type(ValueType::OpentypeTag); parsed.has_value())
return parsed.release_value();
if (auto parsed = parse_for_type(ValueType::Rect); parsed.has_value())
return parsed.release_value();