| OLD | NEW |
| 1 /// The Dart HTML library. | 1 /// The Dart HTML library. |
| 2 library dart.dom.html; | 2 library dart.dom.html; |
| 3 | 3 |
| 4 import 'dart:async'; | 4 import 'dart:async'; |
| 5 import 'dart:collection'; | 5 import 'dart:collection'; |
| 6 import 'dart:_collection-dev' hide Symbol; | 6 import 'dart:_collection-dev' hide Symbol; |
| 7 import 'dart:html_common'; | 7 import 'dart:html_common'; |
| 8 import 'dart:indexed_db'; | 8 import 'dart:indexed_db'; |
| 9 import 'dart:isolate'; | 9 import 'dart:isolate'; |
| 10 import 'dart:json' as json; | 10 import 'dart:json' as json; |
| (...skipping 14206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 14217 final int videoDecodedByteCount; | 14217 final int videoDecodedByteCount; |
| 14218 | 14218 |
| 14219 @DomName('HTMLMediaElement.addTextTrack') | 14219 @DomName('HTMLMediaElement.addTextTrack') |
| 14220 @DocsEditable | 14220 @DocsEditable |
| 14221 // http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-eleme
nt.html#dom-media-addtexttrack | 14221 // http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-eleme
nt.html#dom-media-addtexttrack |
| 14222 @Experimental | 14222 @Experimental |
| 14223 TextTrack addTextTrack(String kind, [String label, String language]) native; | 14223 TextTrack addTextTrack(String kind, [String label, String language]) native; |
| 14224 | 14224 |
| 14225 @DomName('HTMLMediaElement.canPlayType') | 14225 @DomName('HTMLMediaElement.canPlayType') |
| 14226 @DocsEditable | 14226 @DocsEditable |
| 14227 @Unstable |
| 14227 String canPlayType(String type, String keySystem) native; | 14228 String canPlayType(String type, String keySystem) native; |
| 14228 | 14229 |
| 14229 @DomName('HTMLMediaElement.load') | 14230 @DomName('HTMLMediaElement.load') |
| 14230 @DocsEditable | 14231 @DocsEditable |
| 14231 void load() native; | 14232 void load() native; |
| 14232 | 14233 |
| 14233 @DomName('HTMLMediaElement.pause') | 14234 @DomName('HTMLMediaElement.pause') |
| 14234 @DocsEditable | 14235 @DocsEditable |
| 14235 void pause() native; | 14236 void pause() native; |
| 14236 | 14237 |
| (...skipping 15617 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 29854 _position = nextPosition; | 29855 _position = nextPosition; |
| 29855 return true; | 29856 return true; |
| 29856 } | 29857 } |
| 29857 _current = null; | 29858 _current = null; |
| 29858 _position = _array.length; | 29859 _position = _array.length; |
| 29859 return false; | 29860 return false; |
| 29860 } | 29861 } |
| 29861 | 29862 |
| 29862 T get current => _current; | 29863 T get current => _current; |
| 29863 } | 29864 } |
| OLD | NEW |