diff options
Diffstat (limited to 'WebCore/html/HTMLVideoElement.idl')
-rw-r--r-- | WebCore/html/HTMLVideoElement.idl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/WebCore/html/HTMLVideoElement.idl b/WebCore/html/HTMLVideoElement.idl index f43bf82..c4764ac 100644 --- a/WebCore/html/HTMLVideoElement.idl +++ b/WebCore/html/HTMLVideoElement.idl @@ -30,5 +30,13 @@ module html { readonly attribute unsigned long videoWidth; readonly attribute unsigned long videoHeight; attribute [ConvertNullToNullString] DOMString poster; + + readonly attribute boolean webkitSupportsFullscreen; + readonly attribute boolean webkitDisplayingFullscreen; + + [NeedsUserGestureCheck] void webkitEnterFullScreen() + raises (DOMException); + void webkitExitFullScreen(); + }; } |