webkitRequestFullscreen
webkitRequestFullscreen is a legacy, vendor-prefixed method on DOM elements used to request fullscreen mode in WebKit-based browsers. It predates the standardized Fullscreen API and was implemented in older WebKit implementations, notably in Safari and older Chromium builds. The method is invoked on an element to attempt to display that element in fullscreen.
Usage and options: element.webkitRequestFullscreen() is called to request fullscreen for the element. In some WebKit versions,
State and compatibility: Modern browsers expose the standard API, including Element.requestFullscreen() and the related properties document.fullscreenElement
Notes: Fullscreen requests generally require a user gesture and may be subject to security and UX restrictions.