diff options
Diffstat (limited to 'testing/firefox/allow-utf8-fallback.patch')
-rw-r--r-- | testing/firefox/allow-utf8-fallback.patch | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/testing/firefox/allow-utf8-fallback.patch b/testing/firefox/allow-utf8-fallback.patch deleted file mode 100644 index d283d60422..0000000000 --- a/testing/firefox/allow-utf8-fallback.patch +++ /dev/null @@ -1,16 +0,0 @@ -Allow user to actually set UTF-8 as the fallback charset. - -This is to allow UTF-8 as default for text/plain - ---- ./dom/encoding/FallbackEncoding.cpp.orig -+++ ./dom/encoding/FallbackEncoding.cpp -@@ -55,8 +55,7 @@ - // Don't let the user break things by setting the override to unreasonable - // values via about:config - if (!EncodingUtils::FindEncodingForLabel(override, mFallback) || -- !EncodingUtils::IsAsciiCompatible(mFallback) || -- mFallback.EqualsLiteral("UTF-8")) { -+ !EncodingUtils::IsAsciiCompatible(mFallback)) { - mFallback.Truncate(); - } - |