OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 // WARNING: Do not edit - generated code. | 5 // WARNING: Do not edit - generated code. |
6 | 6 |
7 interface HTMLTrackElement extends HTMLElement { | 7 interface HTMLTrackElement extends HTMLElement { |
8 | 8 |
| 9 static final int ERROR = 3; |
| 10 |
9 static final int LOADED = 2; | 11 static final int LOADED = 2; |
10 | 12 |
11 static final int LOADING = 1; | 13 static final int LOADING = 1; |
12 | 14 |
13 static final int NONE = 0; | 15 static final int NONE = 0; |
14 | 16 |
15 bool isDefault; | 17 bool isDefault; |
16 | 18 |
17 String kind; | 19 String kind; |
18 | 20 |
19 String label; | 21 String label; |
20 | 22 |
21 final int readyState; | 23 final int readyState; |
22 | 24 |
23 String src; | 25 String src; |
24 | 26 |
25 String srclang; | 27 String srclang; |
26 | 28 |
27 final TextTrack track; | 29 final TextTrack track; |
28 } | 30 } |
OLD | NEW |