Changeset 250747 in webkit


Ignore:
Timestamp:
Oct 4, 2019 2:51:37 PM (4 years ago)
Author:
commit-queue@webkit.org
Message:

Fix build with icu 65.1
https://bugs.webkit.org/show_bug.cgi?id=202600

Patch by Heiko Becker <heirecka@exherbo.org> on 2019-10-04
Reviewed by Konstantin Tokarev.

Source/WebCore:

  • dom/Document.cpp:

(WebCore::isValidNameNonASCII):
(WebCore::Document::parseQualifiedName):

Source/WTF:

  • wtf/URLHelpers.cpp:

(WTF::URLHelpers::allCharactersInIDNScriptWhiteList):

Location:
trunk/Source
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r250725 r250747  
     12019-10-04  Heiko Becker  <heirecka@exherbo.org>
     2
     3        Fix build with icu 65.1
     4        https://bugs.webkit.org/show_bug.cgi?id=202600
     5
     6        Reviewed by Konstantin Tokarev.
     7
     8        * wtf/URLHelpers.cpp:
     9        (WTF::URLHelpers::allCharactersInIDNScriptWhiteList):
     10
    1112019-10-04  Truitt Savell  <tsavell@apple.com>
    212
  • trunk/Source/WTF/wtf/URLHelpers.cpp

    r246951 r250747  
    302302    while (i < length) {
    303303        UChar32 c;
    304         U16_NEXT(buffer, i, length, c)
     304        U16_NEXT(buffer, i, length, c);
    305305        UErrorCode error = U_ZERO_ERROR;
    306306        UScriptCode script = uscript_getScript(c, &error);
  • trunk/Source/WebCore/ChangeLog

    r250740 r250747  
     12019-10-04  Heiko Becker  <heirecka@exherbo.org>
     2
     3        Fix build with icu 65.1
     4        https://bugs.webkit.org/show_bug.cgi?id=202600
     5
     6        Reviewed by Konstantin Tokarev.
     7
     8        * dom/Document.cpp:
     9        (WebCore::isValidNameNonASCII):
     10        (WebCore::Document::parseQualifiedName):
     11
    1122019-10-04  James Darpinian  <jdarpinian@chromium.org>
    213
  • trunk/Source/WebCore/dom/Document.cpp

    r250738 r250747  
    49554955
    49564956    UChar32 c;
    4957     U16_NEXT(characters, i, length, c)
     4957    U16_NEXT(characters, i, length, c);
    49584958    if (!isValidNameStart(c))
    49594959        return false;
    49604960
    49614961    while (i < length) {
    4962         U16_NEXT(characters, i, length, c)
     4962        U16_NEXT(characters, i, length, c);
    49634963        if (!isValidNamePart(c))
    49644964            return false;
     
    50205020    for (unsigned i = 0; i < length; ) {
    50215021        UChar32 c;
    5022         U16_NEXT(qualifiedName, i, length, c)
     5022        U16_NEXT(qualifiedName, i, length, c);
    50235023        if (c == ':') {
    50245024            if (sawColon)
Note: See TracChangeset for help on using the changeset viewer.