| Index: Source/core/html/HTMLMediaElement.idl
|
| diff --git a/Source/core/html/HTMLMediaElement.idl b/Source/core/html/HTMLMediaElement.idl
|
| index ccc69399b457a783d13a44ded382ca191ef50386..d505be7c7c951fe736fe513fc0a18069040615a7 100644
|
| --- a/Source/core/html/HTMLMediaElement.idl
|
| +++ b/Source/core/html/HTMLMediaElement.idl
|
| @@ -26,6 +26,7 @@
|
| [
|
| ActiveDOMObject,
|
| RuntimeEnabled=Media,
|
| + TypeChecking=Unrestricted,
|
| ] interface HTMLMediaElement : HTMLElement {
|
|
|
| // error state
|
| @@ -57,12 +58,11 @@
|
| readonly attribute boolean seeking;
|
|
|
| // playback state
|
| - // FIXME: generated bindings should check isfinite: http://crbug.com/354298
|
| [RaisesException=Setter] attribute double currentTime;
|
| readonly attribute unrestricted double duration;
|
| readonly attribute boolean paused;
|
| - [RaisesException=Setter] attribute double defaultPlaybackRate;
|
| - [RaisesException=Setter] attribute double playbackRate;
|
| + attribute double defaultPlaybackRate;
|
| + attribute double playbackRate;
|
| readonly attribute TimeRanges played;
|
| readonly attribute TimeRanges seekable;
|
| readonly attribute boolean ended;
|
|
|