OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 [ | |
6 RuntimeEnabled=AudioVideoTracks | |
Nils Barth (inactive)
2014/03/19 01:07:33
Trailing comma please.
acolwell GONE FROM CHROMIUM
2014/03/28 01:32:35
Done.
| |
7 ] interface VideoTrackList : EventTarget { | |
8 readonly attribute unsigned long length; | |
9 getter VideoTrack (unsigned long index); | |
10 VideoTrack? getTrackById(DOMString id); | |
11 readonly attribute long selectedIndex; | |
12 | |
13 attribute EventHandler onchange; | |
14 attribute EventHandler onaddtrack; | |
15 attribute EventHandler onremovetrack; | |
16 }; | |
OLD | NEW |