In an installed PWA using display_override: ["window-controls-overlay", "standalone"],
entering browser fullscreen while Window Controls Overlay (WCO) is active leaves a non-interactive
hit-test region in the top-right titlebar area. Mouse clicks in that region are swallowed even though
app UI is visible there. Keyboard focus still works; pointer input does not. Exiting fullscreen
restores clickability.
window-controls-overlayInstall this page as a PWA, enter fullscreen (F11), then watch the conditions below. Note that
navigator.windowControlsOverlay.visible reports false in fullscreen because
Chrome hides the overlay UI -- but on Windows the native frame still reserves the caption hit-test
region. That is why JS cannot feature-detect the dead zone: the only reliable signal is whether the
top-right controls actually respond to clicks.
Click Ping and Menu above. If nothing registers here, the caption
region is swallowing the clicks (the bug). With the fix they register normally.
Drop the #if BUILDFLAG(IS_MAC) guard so WCO is disabled in fullscreen on every
platform, and refresh the state on fullscreen enter/exit transitions.
F11 to enter fullscreen.Ping / Menu controls in the top-right of the strip above.