Backed out changeset 356deee0a23a (bug 1759167) for causing crashes. a=backout

This commit is contained in:
Csoregi Natalia 2022-03-12 12:09:59 +02:00
Родитель ebb37fa5d0
Коммит 858c02d8a3
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -712,7 +712,10 @@ nsIXULRuntime::ContentWin32kLockdownState GetLiveWin32kLockdownState() {
return nsIXULRuntime::ContentWin32kLockdownState::DisabledByE10S;
}
if (!IsWin8OrLater()) {
// Win32k lockdown is available on Win8+, but we are initially limiting it to
// Windows 10 v1709 (build 16299) or later. Before this COM initialization
// currently fails if user32.dll has loaded before it is called.
if (!IsWin10FallCreatorsUpdateOrLater()) {
return nsIXULRuntime::ContentWin32kLockdownState::
OperatingSystemNotSupported;
}