void exitFullscreen( )

Returns page to standard layout.

Has no effect if the page is not in fullscreen mode.

Other resources

Source

/**
 * Returns page to standard layout.
 *
 * Has no effect if the page is not in fullscreen mode.
 *
 * ## Other resources
 *
 * * [Using the fullscreen API]
 * (http://docs.webplatform.org/wiki/tutorials/using_the_full-screen_api) from
 * WebPlatform.org.
 * * [Fullscreen specification]
 * (http://www.w3.org/TR/fullscreen/) from W3C.
 */
@DomName('Document.webkitExitFullscreen')
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.SAFARI)
@Experimental()
void exitFullscreen() {
  _webkitExitFullscreen();
}