| Index: core/html/MediaController.idl
|
| diff --git a/core/html/MediaController.idl b/core/html/MediaController.idl
|
| index 254bbc27976449b92f768c1a6c50e885085ede27..ad46115d889b0327ef17e83867aa803a96a8b591 100644
|
| --- a/core/html/MediaController.idl
|
| +++ b/core/html/MediaController.idl
|
| @@ -24,15 +24,15 @@
|
| */
|
|
|
| [
|
| - RuntimeEnabled=Media,
|
| Constructor,
|
| - ConstructorCallWith=ExecutionContext
|
| + ConstructorCallWith=ExecutionContext,
|
| + RuntimeEnabled=Media,
|
| ] interface MediaController : EventTarget {
|
| readonly attribute TimeRanges buffered;
|
| readonly attribute TimeRanges seekable;
|
|
|
| readonly attribute double duration;
|
| - [SetterRaisesException] attribute double currentTime;
|
| + [RaisesException=Setter] attribute double currentTime;
|
|
|
| readonly attribute boolean paused;
|
| readonly attribute TimeRanges played;
|
| @@ -44,6 +44,6 @@
|
| attribute double defaultPlaybackRate;
|
| attribute double playbackRate;
|
|
|
| - [SetterRaisesException] attribute double volume;
|
| + [RaisesException=Setter] attribute double volume;
|
| attribute boolean muted;
|
| };
|
|
|