| OLD | NEW |
| 1 library html; | 1 library html; |
| 2 | 2 |
| 3 import 'dart:collection'; | 3 import 'dart:collection'; |
| 4 import 'dart:html_common'; | 4 import 'dart:html_common'; |
| 5 import 'dart:indexed_db'; | 5 import 'dart:indexed_db'; |
| 6 import 'dart:isolate'; | 6 import 'dart:isolate'; |
| 7 import 'dart:json'; | 7 import 'dart:json'; |
| 8 import 'dart:math'; | 8 import 'dart:math'; |
| 9 import 'dart:svg' as svg; | 9 import 'dart:svg' as svg; |
| 10 import 'dart:web_audio' as web_audio; | 10 import 'dart:web_audio' as web_audio; |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 final String animationName; | 172 final String animationName; |
| 173 | 173 |
| 174 /// @domName WebKitAnimationEvent.elapsedTime; @docsEditable true | 174 /// @domName WebKitAnimationEvent.elapsedTime; @docsEditable true |
| 175 final num elapsedTime; | 175 final num elapsedTime; |
| 176 } | 176 } |
| 177 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 177 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 178 // for details. All rights reserved. Use of this source code is governed by a | 178 // for details. All rights reserved. Use of this source code is governed by a |
| 179 // BSD-style license that can be found in the LICENSE file. | 179 // BSD-style license that can be found in the LICENSE file. |
| 180 | 180 |
| 181 | 181 |
| 182 /// @domName HTMLAppletElement; @docsEditable true | |
| 183 class AppletElement extends Element native "*HTMLAppletElement" { | |
| 184 | |
| 185 /// @domName HTMLAppletElement.align; @docsEditable true | |
| 186 String align; | |
| 187 | |
| 188 /// @domName HTMLAppletElement.alt; @docsEditable true | |
| 189 String alt; | |
| 190 | |
| 191 /// @domName HTMLAppletElement.archive; @docsEditable true | |
| 192 String archive; | |
| 193 | |
| 194 /// @domName HTMLAppletElement.code; @docsEditable true | |
| 195 String code; | |
| 196 | |
| 197 /// @domName HTMLAppletElement.codeBase; @docsEditable true | |
| 198 String codeBase; | |
| 199 | |
| 200 /// @domName HTMLAppletElement.height; @docsEditable true | |
| 201 String height; | |
| 202 | |
| 203 /// @domName HTMLAppletElement.hspace; @docsEditable true | |
| 204 String hspace; | |
| 205 | |
| 206 /// @domName HTMLAppletElement.name; @docsEditable true | |
| 207 String name; | |
| 208 | |
| 209 /// @domName HTMLAppletElement.object; @docsEditable true | |
| 210 String object; | |
| 211 | |
| 212 /// @domName HTMLAppletElement.vspace; @docsEditable true | |
| 213 String vspace; | |
| 214 | |
| 215 /// @domName HTMLAppletElement.width; @docsEditable true | |
| 216 String width; | |
| 217 } | |
| 218 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | |
| 219 // for details. All rights reserved. Use of this source code is governed by a | |
| 220 // BSD-style license that can be found in the LICENSE file. | |
| 221 | |
| 222 | |
| 223 /// @domName DOMApplicationCache; @docsEditable true | 182 /// @domName DOMApplicationCache; @docsEditable true |
| 224 class ApplicationCache extends EventTarget native "*DOMApplicationCache" { | 183 class ApplicationCache extends EventTarget native "*DOMApplicationCache" { |
| 225 | 184 |
| 226 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true | 185 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true |
| 227 ApplicationCacheEvents get on => | 186 ApplicationCacheEvents get on => |
| 228 new ApplicationCacheEvents(this); | 187 new ApplicationCacheEvents(this); |
| 229 | 188 |
| 230 static const int CHECKING = 2; | 189 static const int CHECKING = 2; |
| 231 | 190 |
| 232 static const int DOWNLOADING = 3; | 191 static const int DOWNLOADING = 3; |
| (...skipping 25308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 25541 T next() { | 25500 T next() { |
| 25542 if (!hasNext) { | 25501 if (!hasNext) { |
| 25543 throw new StateError("No more elements"); | 25502 throw new StateError("No more elements"); |
| 25544 } | 25503 } |
| 25545 return _array[_pos++]; | 25504 return _array[_pos++]; |
| 25546 } | 25505 } |
| 25547 | 25506 |
| 25548 final List<T> _array; | 25507 final List<T> _array; |
| 25549 int _pos; | 25508 int _pos; |
| 25550 } | 25509 } |
| OLD | NEW |