demo · v132

video FS — removal probe + replacement

Live probes for the removed prefixed APIs and the replacement Element.requestFullscreen(). The button uses the standard API; the second button tries the removed prefixed API and shows what happens.

video.requestFullscreen: —
video.webkitEnterFullscreen: —
video.webkitExitFullscreen: —
click a button

the replacement

const v = document.querySelector("video");
await v.requestFullscreen();          // standard
// v.webkitEnterFullscreen() // removed in Chrome 132

see also