mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-08 13:37:10 +09:00
LibUnicode: Fix Hangul syllable composition for specific cases
This fixes `combine_hangul_code_points` which would try to combine a LVT syllable with a trailing consonant, resulting in a wrong character. Also added a test for this specific case.
This commit is contained in:
parent
ce0e4b71a3
commit
104b51b912
Notes:
sideshowbarker
2024-07-17 06:11:17 +09:00
Author: https://github.com/matcool
Commit: 104b51b912
Pull-request: https://github.com/SerenityOS/serenity/pull/15498
Reviewed-by: https://github.com/trflynn89 ✅
2 changed files with 3 additions and 1 deletions
|
@ -63,6 +63,7 @@ TEST_CASE(normalize_nfc)
|
|||
|
||||
EXPECT_EQ(normalize("\u1103\u1161\u11B0"sv, NormalizationForm::NFC), "닭"sv);
|
||||
EXPECT_EQ(normalize("\u1100\uAC00\u11A8"sv, NormalizationForm::NFC), "\u1100\uAC01"sv);
|
||||
EXPECT_EQ(normalize("\u1103\u1161\u11B0\u11B0"sv, NormalizationForm::NFC), "닭\u11B0");
|
||||
}
|
||||
|
||||
TEST_CASE(normalize_nfkd)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue