--- Source/WebCore/dom/Document.cpp.orig 2016-04-10 09:48:37.000000000 +0300 +++ Source/WebCore/dom/Document.cpp 2019-10-22 18:34:40.507070758 +0300 @@ -3912,12 +3912,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; } @@ -3980,7 +3980,7 @@ const UChar* s = qualifiedName.deprecatedCharacters(); for (unsigned i = 0; i < length;) { UChar32 c; - U16_NEXT(s, i, length, c) + U16_NEXT(s, i, length, c); if (c == ':') { if (sawColon) { ec = NAMESPACE_ERR; --- Source/WebCore/platform/graphics/SegmentedFontData.cpp.orig 2019-10-22 19:39:23.285741370 +0300 +++ Source/WebCore/platform/graphics/SegmentedFontData.cpp 2019-10-22 19:40:02.713550107 +0300 @@ -61,7 +61,7 @@ { UChar32 c; for (int i = 0; i < length; ) { - U16_NEXT(characters, i, length, c) + U16_NEXT(characters, i, length, c); if (!containsCharacter(c)) return false; }