mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 14:40:18 +00:00
LibWeb: Resolve Unicode FIXME in forwardDelete
This commit is contained in:
parent
82f56e30ed
commit
b51cc00478
Notes:
github-actions[bot]
2025-09-16 10:58:54 +00:00
Author: https://github.com/gmta
Commit: b51cc00478
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/6203
Reviewed-by: https://github.com/trflynn89 ✅
3 changed files with 14 additions and 4 deletions
|
@ -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);
|
||||
|
|
|
@ -8,7 +8,6 @@
|
|||
|
||||
#include <AK/Forward.h>
|
||||
#include <AK/Optional.h>
|
||||
#include <AK/StringView.h>
|
||||
#include <AK/Types.h>
|
||||
#include <LibUnicode/Forward.h>
|
||||
|
||||
|
@ -20,6 +19,7 @@ bool code_point_has_general_category(u32 code_point, GeneralCategory general_cat
|
|||
bool code_point_is_printable(u32 code_point);
|
||||
bool code_point_has_control_general_category(u32 code_point);
|
||||
bool code_point_has_letter_general_category(u32 code_point);
|
||||
bool code_point_has_mark_general_category(u32 code_point);
|
||||
bool code_point_has_number_general_category(u32 code_point);
|
||||
bool code_point_has_punctuation_general_category(u32 code_point);
|
||||
bool code_point_has_separator_general_category(u32 code_point);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue