From 4f9396bd0c6a418d361241d229227edf8b5a3187 Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Thu, 23 Jan 2020 17:50:40 +0300 Subject: webkit2gtk: update and move to extra --- testing/webkit2gtk/patches/u16-fix.patch | 37 -------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 testing/webkit2gtk/patches/u16-fix.patch (limited to 'testing/webkit2gtk/patches/u16-fix.patch') diff --git a/testing/webkit2gtk/patches/u16-fix.patch b/testing/webkit2gtk/patches/u16-fix.patch deleted file mode 100644 index 5ce7d9ae..00000000 --- a/testing/webkit2gtk/patches/u16-fix.patch +++ /dev/null @@ -1,37 +0,0 @@ ---- webkitgtk-2.26.2/Source/WTF/wtf/URLHelpers.cpp -+++ webkitgtk-2.26.2-patched/Source/WTF/wtf/URLHelpers.cpp -@@ -301,7 +301,7 @@ - Optional 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) { ---- webkitgtk-2.26.2/Source/WebCore/dom/Document.cpp -+++ webkitgtk-2.26.2-patched/Source/WebCore/dom/Document.cpp -@@ -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 }; -- cgit v1.2.3