LibWeb: Change default window ESO crossOriginIsolated value to false

This is a safer default value for this property since we don't
currently implement the mechanisms required for this value to be true.
This commit is contained in:
Tim Ledbetter 2025-01-28 10:43:38 +00:00 committed by Alexander Kalenik
parent 39445d6dd6
commit 11acd54463
Notes: github-actions[bot] 2025-01-30 17:39:07 +00:00

View file

@ -130,7 +130,7 @@ CanUseCrossOriginIsolatedAPIs WindowEnvironmentSettingsObject::cross_origin_isol
// FIXME: Return true if both of the following hold, and false otherwise:
// 1. realm's agent cluster's cross-origin-isolation mode is "concrete", and
// 2. window's associated Document is allowed to use the "cross-origin-isolated" feature.
return CanUseCrossOriginIsolatedAPIs::Yes;
return CanUseCrossOriginIsolatedAPIs::No;
}
}