| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 // WARNING: Do not edit - generated code. |
| 6 |
| 7 /// @domName HTMLTrackElement |
| 8 interface TrackElement extends Element default _Elements { |
| 9 |
| 10 TrackElement(); |
| 11 |
| 12 static final int ERROR = 3; |
| 13 |
| 14 static final int LOADED = 2; |
| 15 |
| 16 static final int LOADING = 1; |
| 17 |
| 18 static final int NONE = 0; |
| 19 |
| 20 /** @domName HTMLTrackElement.defaultValue */ |
| 21 bool defaultValue; |
| 22 |
| 23 /** @domName HTMLTrackElement.kind */ |
| 24 String kind; |
| 25 |
| 26 /** @domName HTMLTrackElement.label */ |
| 27 String label; |
| 28 |
| 29 /** @domName HTMLTrackElement.readyState */ |
| 30 final int readyState; |
| 31 |
| 32 /** @domName HTMLTrackElement.src */ |
| 33 String src; |
| 34 |
| 35 /** @domName HTMLTrackElement.srclang */ |
| 36 String srclang; |
| 37 |
| 38 /** @domName HTMLTrackElement.track */ |
| 39 final TextTrack track; |
| 40 } |
| OLD | NEW |