Bumping manifests a=b2g-bump
[gecko.git] / dom / webidl / HTMLVideoElement.webidl
blobaf28d5418afd25390b3e4f5461b827212c75de35
1 /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3  * License, v. 2.0. If a copy of the MPL was not distributed with this file,
4  * You can obtain one at http://mozilla.org/MPL/2.0/.
5  *
6  * The origin of this IDL file is
7  * http://www.whatwg.org/specs/web-apps/current-work/#the-video-element
8  *
9  * © Copyright 2004-2011 Apple Computer, Inc., Mozilla Foundation, and
10  * Opera Software ASA. You are granted a license to use, reproduce
11  * and create derivative works of this document.
12  */
14 interface HTMLVideoElement : HTMLMediaElement {
15   [SetterThrows]
16            attribute unsigned long width;
17   [SetterThrows]
18            attribute unsigned long height;
19   readonly attribute unsigned long videoWidth;
20   readonly attribute unsigned long videoHeight;
21   [SetterThrows]
22            attribute DOMString poster;
25 partial interface HTMLVideoElement {
26   // A count of the number of video frames that have demuxed from the media
27   // resource. If we were playing perfectly, we'd be able to paint this many
28   // frames.
29   readonly attribute unsigned long mozParsedFrames;
31   // A count of the number of frames that have been decoded. We may drop
32   // frames if the decode is taking too much time.
33   readonly attribute unsigned long mozDecodedFrames;
35   // A count of the number of frames that have been presented to the rendering
36   // pipeline. We may drop frames if they arrive late at the renderer.
37   readonly attribute unsigned long mozPresentedFrames;
39   // Number of presented frames which were painted on screen.
40   readonly attribute unsigned long mozPaintedFrames;
42   // Time which the last painted video frame was late by, in seconds.
43   readonly attribute double mozFrameDelay;
45   // True if the video has an audio track available.
46   readonly attribute boolean mozHasAudio;
48   // True if the video should use a screen wake lock.
49   [Pref="dom.wakelock.enabled", Func="Navigator::HasWakeLockSupport"]
50   attribute boolean mozUseScreenWakeLock;
53 // https://dvcs.w3.org/hg/html-media/raw-file/default/media-source/media-source.html#idl-def-HTMLVideoElement
54 partial interface HTMLVideoElement {
55   [Func="mozilla::dom::MediaSource::Enabled", NewObject]
56   VideoPlaybackQuality getVideoPlaybackQuality();