From 24e09fef3e82baad6753942651b5f76fd728e56e Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Thu, 6 Jan 2022 12:54:03 -0500 Subject: [PATCH] alloy: Disable bfcache in M98 (see issue #3237) This will be reverted if the bfcache issue is fixed before M98 becomes the stable channel. --- libcef/browser/alloy/alloy_browser_host_impl.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libcef/browser/alloy/alloy_browser_host_impl.cc b/libcef/browser/alloy/alloy_browser_host_impl.cc index 814931b63..461f7bf00 100644 --- a/libcef/browser/alloy/alloy_browser_host_impl.cc +++ b/libcef/browser/alloy/alloy_browser_host_impl.cc @@ -1463,7 +1463,8 @@ void AlloyBrowserHostImpl::ExitPictureInPicture() { } bool AlloyBrowserHostImpl::IsBackForwardCacheSupported() { - return true; + // Disabled due to issue #3237. + return false; } bool AlloyBrowserHostImpl::IsPrerender2Supported() {