allowFullscreen property

bool get allowFullscreen

The allowFullscreen property of the HTMLIFrameElement interface is a boolean value that reflects the allowfullscreen attribute of the iframe element, indicating whether to allow the iframe's contents to use Element.requestFullscreen.

Note: This property is considered a legacy property. Use allow="fullscreen" and HTMLIFrameElement.allow instead.

Implementation

external bool get allowFullscreen;
set allowFullscreen (bool value)

Implementation

external set allowFullscreen(bool value);