mirror of
https://github.com/roytam1/UXP.git
synced 2026-05-26 05:38:39 +00:00
c690e26c67
Removed autodetection of this charset due to unreliability. There are known security issues around charset auto-detection for ISO-2022-JP. Given the usage is around 0.000002% of page loads, and Safari does not support auto-detection of ISO-2022-JP, Chrome also planned to remove support for it to eliminate the security issues. See also https://www.sonarsource.com/blog/encoding-differentials-why-charset-matters/ Removal from the menu to avoid social engineering hazards and it being literally unused on the web.
20 lines
559 B
INI
20 lines
559 B
INI
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
UNIFIED_SOURCES += [
|
|
'CharDistribution.cpp',
|
|
'JpCntx.cpp',
|
|
'nsCharSetProber.cpp',
|
|
'nsEUCJPProber.cpp',
|
|
'nsLatin1Prober.cpp',
|
|
'nsMBCSGroupProber.cpp',
|
|
'nsMBCSSM.cpp',
|
|
'nsSJISProber.cpp',
|
|
'nsUniversalDetector.cpp',
|
|
'nsUTF8Prober.cpp',
|
|
]
|
|
|
|
FINAL_LIBRARY = 'xul'
|