Title: [254902] releases/WebKitGTK/webkit-2.26/Source
Revision
254902
Author
[email protected]
Date
2020-01-22 02:19:29 -0800 (Wed, 22 Jan 2020)

Log Message

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

Patch by Heiko Becker <[email protected]> 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):

Modified Paths

Diff

Modified: releases/WebKitGTK/webkit-2.26/Source/WTF/ChangeLog (254901 => 254902)


--- releases/WebKitGTK/webkit-2.26/Source/WTF/ChangeLog	2020-01-22 10:19:25 UTC (rev 254901)
+++ releases/WebKitGTK/webkit-2.26/Source/WTF/ChangeLog	2020-01-22 10:19:29 UTC (rev 254902)
@@ -1,3 +1,13 @@
+2019-10-04  Heiko Becker  <[email protected]>
+
+        Fix build with icu 65.1
+        https://bugs.webkit.org/show_bug.cgi?id=202600
+
+        Reviewed by Konstantin Tokarev.
+
+        * wtf/URLHelpers.cpp:
+        (WTF::URLHelpers::allCharactersInIDNScriptWhiteList):
+
 2019-09-20  Libor Bukata  <[email protected]>
 
         UI process crash when using callOnMainThread() after the main thread dispatcher has been destroyed

Modified: releases/WebKitGTK/webkit-2.26/Source/WTF/wtf/URLHelpers.cpp (254901 => 254902)


--- releases/WebKitGTK/webkit-2.26/Source/WTF/wtf/URLHelpers.cpp	2020-01-22 10:19:25 UTC (rev 254901)
+++ releases/WebKitGTK/webkit-2.26/Source/WTF/wtf/URLHelpers.cpp	2020-01-22 10:19:29 UTC (rev 254902)
@@ -301,7 +301,7 @@
     Optional<UChar32> previousCodePoint;
     while (i < length) {
         UChar32 c;
-        U16_NEXT(buffer, i, length, c)
+        U16_NEXT(buffer, i, length, c);
         UErrorCode error = U_ZERO_ERROR;
         UScriptCode script = uscript_getScript(c, &error);
         if (error != U_ZERO_ERROR) {

Modified: releases/WebKitGTK/webkit-2.26/Source/WebCore/ChangeLog (254901 => 254902)


--- releases/WebKitGTK/webkit-2.26/Source/WebCore/ChangeLog	2020-01-22 10:19:25 UTC (rev 254901)
+++ releases/WebKitGTK/webkit-2.26/Source/WebCore/ChangeLog	2020-01-22 10:19:29 UTC (rev 254902)
@@ -1,3 +1,14 @@
+2019-10-04  Heiko Becker  <[email protected]>
+
+        Fix build with icu 65.1
+        https://bugs.webkit.org/show_bug.cgi?id=202600
+
+        Reviewed by Konstantin Tokarev.
+
+        * dom/Document.cpp:
+        (WebCore::isValidNameNonASCII):
+        (WebCore::Document::parseQualifiedName):
+
 2019-11-07  Adrian Perez de Castro  <[email protected]>
 
         Unreviewed build fixed for non-unified builds.

Modified: releases/WebKitGTK/webkit-2.26/Source/WebCore/dom/Document.cpp (254901 => 254902)


--- releases/WebKitGTK/webkit-2.26/Source/WebCore/dom/Document.cpp	2020-01-22 10:19:25 UTC (rev 254901)
+++ releases/WebKitGTK/webkit-2.26/Source/WebCore/dom/Document.cpp	2020-01-22 10:19:29 UTC (rev 254902)
@@ -4944,12 +4944,12 @@
     unsigned i = 0;
 
     UChar32 c;
-    U16_NEXT(characters, i, length, c)
+    U16_NEXT(characters, i, length, c);
     if (!isValidNameStart(c))
         return false;
 
     while (i < length) {
-        U16_NEXT(characters, i, length, c)
+        U16_NEXT(characters, i, length, c);
         if (!isValidNamePart(c))
             return false;
     }
@@ -5009,7 +5009,7 @@
 
     for (unsigned i = 0; i < length; ) {
         UChar32 c;
-        U16_NEXT(qualifiedName, i, length, c)
+        U16_NEXT(qualifiedName, i, length, c);
         if (c == ':') {
             if (sawColon)
                 return Exception { InvalidCharacterError };
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to