OLD | NEW |
1 library html; | 1 library html; |
2 | 2 |
3 import 'dart:async'; | 3 import 'dart:async'; |
4 import 'dart:collection'; | 4 import 'dart:collection'; |
5 import 'dart:html_common'; | 5 import 'dart:html_common'; |
6 import 'dart:indexed_db'; | 6 import 'dart:indexed_db'; |
7 import 'dart:isolate'; | 7 import 'dart:isolate'; |
8 import 'dart:json' as json; | 8 import 'dart:json' as json; |
9 import 'dart:math'; | 9 import 'dart:math'; |
10 import 'dart:svg' as svg; | 10 import 'dart:svg' as svg; |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 final String animationName; | 160 final String animationName; |
161 | 161 |
162 /// @domName WebKitAnimationEvent.elapsedTime; @docsEditable true | 162 /// @domName WebKitAnimationEvent.elapsedTime; @docsEditable true |
163 final num elapsedTime; | 163 final num elapsedTime; |
164 } | 164 } |
165 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 165 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
166 // for details. All rights reserved. Use of this source code is governed by a | 166 // for details. All rights reserved. Use of this source code is governed by a |
167 // BSD-style license that can be found in the LICENSE file. | 167 // BSD-style license that can be found in the LICENSE file. |
168 | 168 |
169 | 169 |
| 170 /// @domName HTMLAppletElement; @docsEditable true |
| 171 class AppletElement extends Element native "*HTMLAppletElement" { |
| 172 |
| 173 /// @domName HTMLAppletElement.align; @docsEditable true |
| 174 String align; |
| 175 |
| 176 /// @domName HTMLAppletElement.alt; @docsEditable true |
| 177 String alt; |
| 178 |
| 179 /// @domName HTMLAppletElement.archive; @docsEditable true |
| 180 String archive; |
| 181 |
| 182 /// @domName HTMLAppletElement.code; @docsEditable true |
| 183 String code; |
| 184 |
| 185 /// @domName HTMLAppletElement.codeBase; @docsEditable true |
| 186 String codeBase; |
| 187 |
| 188 /// @domName HTMLAppletElement.height; @docsEditable true |
| 189 String height; |
| 190 |
| 191 /// @domName HTMLAppletElement.hspace; @docsEditable true |
| 192 String hspace; |
| 193 |
| 194 /// @domName HTMLAppletElement.name; @docsEditable true |
| 195 String name; |
| 196 |
| 197 /// @domName HTMLAppletElement.object; @docsEditable true |
| 198 String object; |
| 199 |
| 200 /// @domName HTMLAppletElement.vspace; @docsEditable true |
| 201 String vspace; |
| 202 |
| 203 /// @domName HTMLAppletElement.width; @docsEditable true |
| 204 String width; |
| 205 } |
| 206 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 207 // for details. All rights reserved. Use of this source code is governed by a |
| 208 // BSD-style license that can be found in the LICENSE file. |
| 209 |
| 210 |
170 /// @domName DOMApplicationCache; @docsEditable true | 211 /// @domName DOMApplicationCache; @docsEditable true |
171 class ApplicationCache extends EventTarget native "*DOMApplicationCache" { | 212 class ApplicationCache extends EventTarget native "*DOMApplicationCache" { |
172 | 213 |
173 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true | 214 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true |
174 ApplicationCacheEvents get on => | 215 ApplicationCacheEvents get on => |
175 new ApplicationCacheEvents(this); | 216 new ApplicationCacheEvents(this); |
176 | 217 |
177 static const int CHECKING = 2; | 218 static const int CHECKING = 2; |
178 | 219 |
179 static const int DOWNLOADING = 3; | 220 static const int DOWNLOADING = 3; |
(...skipping 26718 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
26898 _position = nextPosition; | 26939 _position = nextPosition; |
26899 return true; | 26940 return true; |
26900 } | 26941 } |
26901 _current = null; | 26942 _current = null; |
26902 _position = _array.length; | 26943 _position = _array.length; |
26903 return false; | 26944 return false; |
26904 } | 26945 } |
26905 | 26946 |
26906 T get current => _current; | 26947 T get current => _current; |
26907 } | 26948 } |
OLD | NEW |