Changeset 244903 in webkit


Ignore:
Timestamp:
May 2, 2019 11:23:59 PM (5 years ago)
Author:
commit-queue@webkit.org
Message:

Mark U+01C0 as a homograph of U+006C
https://bugs.webkit.org/show_bug.cgi?id=197526
<rdar://problem/50301904>

Patch by Alex Christensen <achristensen@webkit.org> on 2019-05-02
Reviewed by Tim Horton.

Source/WTF:

  • wtf/URLHelpers.cpp:

(WTF::URLHelpers::isLookalikeCharacter):

Tools:

  • TestWebKitAPI/Tests/WTF/cocoa/URLExtras.mm:

(TestWebKitAPI::TEST):

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r244881 r244903  
     12019-05-02  Alex Christensen  <achristensen@webkit.org>
     2
     3        Mark U+01C0 as a homograph of U+006C
     4        https://bugs.webkit.org/show_bug.cgi?id=197526
     5        <rdar://problem/50301904>
     6
     7        Reviewed by Tim Horton.
     8
     9        * wtf/URLHelpers.cpp:
     10        (WTF::URLHelpers::isLookalikeCharacter):
     11
    1122019-05-02  Don Olmstead  <don.olmstead@sony.com>
    213
  • trunk/Source/WTF/wtf/URLHelpers.cpp

    r243049 r244903  
    121121    case 0x00ED: /* LATIN SMALL LETTER I WITH ACUTE */
    122122    /* 0x0131 LATIN SMALL LETTER DOTLESS I is intentionally not considered a lookalike character because it is visually distinguishable from i and it has legitimate use in the Turkish language. */
     123    case 0x01C0: /* LATIN LETTER DENTAL CLICK */
    123124    case 0x01C3: /* LATIN LETTER RETROFLEX CLICK */
    124125    case 0x0251: /* LATIN SMALL LETTER ALPHA */
  • trunk/Tools/ChangeLog

    r244898 r244903  
     12019-05-02  Alex Christensen  <achristensen@webkit.org>
     2
     3        Mark U+01C0 as a homograph of U+006C
     4        https://bugs.webkit.org/show_bug.cgi?id=197526
     5        <rdar://problem/50301904>
     6
     7        Reviewed by Tim Horton.
     8
     9        * TestWebKitAPI/Tests/WTF/cocoa/URLExtras.mm:
     10        (TestWebKitAPI::TEST):
     11
    1122019-05-02  Chris Dumez  <cdumez@apple.com>
    213
  • trunk/Tools/TestWebKitAPI/Tests/WTF/cocoa/URLExtras.mm

    r239586 r244903  
    103103        "xn--2-zic", // U+0032 U+05E1
    104104        "xn--uoa", // U+027E
     105        "xn--fja", // U+01C0
    105106    };
    106107    for (const String& host : punycodedSpoofHosts) {
Note: See TracChangeset for help on using the changeset viewer.