From 68cff69a2df869347dca801cb330572194a0f37a Mon Sep 17 00:00:00 2001 From: Netzenbot Date: Sat, 28 Feb 2026 15:54:59 -0500 Subject: [PATCH] Disable Chromium test AutoPictureInPictureTabHelperBrowserTest.OverlaySettingViewIsShownForDocumentPip (#34337) This is an upstream Chromium test that crashes with a null pointer dereference in ASAN builds. The root cause is a race condition where ShowBubble() is deferred via PostTask in AddedToWidget(), so auto_pip_setting_view_ may still be null when the test accesses it. Upstream flake rate: 4.7% overall, 12-13% recently (LUCI Analysis). Already disabled on Linux upstream since Nov 2023 (crbug.com/1500939). Brave does not modify the PIP code paths involved. Resolves brave/brave-browser#53185