import"sbIMediacoreVideoWindow.idl";
Public Attributes | |
attribute boolean | fullscreen |
Video window fullscreen attribute. More... | |
attribute nsIDOMXULElement | videoWindow |
DOM XUL Element used as the video box. More... | |
Definition at line 33 of file sbIMediacoreVideoWindow.idl.
attribute boolean sbIMediacoreVideoWindow::fullscreen |
Video window fullscreen attribute.
This attribute can be used to determine if the video window is currently in fullscreen mode. It can also be used to set the video window to fullscreen mode.
Definition at line 42 of file sbIMediacoreVideoWindow.idl.
attribute nsIDOMXULElement sbIMediacoreVideoWindow::videoWindow |
DOM XUL Element used as the video box.
Setting this attribute will bind the video window to the box for the element. This means that the size of the actual video window will be determined by the size of the box of the element.
If you ever hide or set the visibility on this element to false, you must send a resize event to it so that the underlying video window will redraw correctly. Otherwise, the behavior of the video is undefined.
You can send this event from JavaScript using the following code:
Implementors of the video window must respond to the following DOM events: 'unload', 'hide', 'resize'
Definition at line 70 of file sbIMediacoreVideoWindow.idl.