summaryrefslogtreecommitdiff
path: root/www-client/chromium/files/chromium-88-system-icu.patch
diff options
context:
space:
mode:
Diffstat (limited to 'www-client/chromium/files/chromium-88-system-icu.patch')
-rw-r--r--www-client/chromium/files/chromium-88-system-icu.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/www-client/chromium/files/chromium-88-system-icu.patch b/www-client/chromium/files/chromium-88-system-icu.patch
deleted file mode 100644
index 968143e..0000000
--- a/www-client/chromium/files/chromium-88-system-icu.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/third_party/blink/renderer/platform/wtf/text/text_codec_icu.cc b/third_party/blink/renderer/platform/wtf/text/text_codec_icu.cc
-index fb8ab0530..5d4ea13e7 100644
---- a/third_party/blink/renderer/platform/wtf/text/text_codec_icu.cc
-+++ b/third_party/blink/renderer/platform/wtf/text/text_codec_icu.cc
-@@ -432,7 +432,7 @@ String TextCodecICU::Decode(const char* bytes,
- // ICU decodes it as U+E5E5.
- if (!strcmp(encoding_.GetName(), "GBK")) {
- if (EqualIgnoringASCIICase(encoding_.GetName(), "gb18030"))
-- resultString.Replace(0xE5E5, ideographicSpaceCharacter);
-+ resultString.Replace(0xE5E5, kIdeographicSpaceCharacter);
- // Make GBK compliant to the encoding spec and align with GB18030
- resultString.Replace(0x01F9, 0xE7C8);
- // FIXME: Once https://www.w3.org/Bugs/Public/show_bug.cgi?id=28740#c3