LibWeb: Resolve Unicode FIXME in forwardDelete

This commit is contained in:
Jelle Raaijmakers 2025-09-15 12:11:22 +02:00 committed by Tim Flynn
parent 82f56e30ed
commit b51cc00478
Notes: github-actions[bot] 2025-09-16 10:58:54 +00:00
3 changed files with 14 additions and 4 deletions

View file

@ -123,6 +123,11 @@ bool code_point_has_letter_general_category(u32 code_point)
return code_point_has_general_category(code_point, GENERAL_CATEGORY_LETTER);
}
bool code_point_has_mark_general_category(u32 code_point)
{
return code_point_has_general_category(code_point, GENERAL_CATEGORY_MARK);
}
bool code_point_has_number_general_category(u32 code_point)
{
return code_point_has_general_category(code_point, GENERAL_CATEGORY_NUMBER);