| 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 9145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 9156 String type; | 9156 String type; |
| 9157 | 9157 |
| 9158 @DomName('HTMLEmbedElement.width') | 9158 @DomName('HTMLEmbedElement.width') |
| 9159 @DocsEditable | 9159 @DocsEditable |
| 9160 String width; | 9160 String width; |
| 9161 } | 9161 } |
| 9162 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 9162 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 9163 // for details. All rights reserved. Use of this source code is governed by a | 9163 // for details. All rights reserved. Use of this source code is governed by a |
| 9164 // BSD-style license that can be found in the LICENSE file. | 9164 // BSD-style license that can be found in the LICENSE file. |
| 9165 | 9165 |
| 9166 | |
| 9167 @DocsEditable | |
| 9168 @DomName('Entity') | |
| 9169 @Experimental // untriaged | |
| 9170 class Entity extends Node native "Entity" { | |
| 9171 | |
| 9172 @DomName('Entity.notationName') | |
| 9173 @DocsEditable | |
| 9174 final String notationName; | |
| 9175 | |
| 9176 @DomName('Entity.publicId') | |
| 9177 @DocsEditable | |
| 9178 final String publicId; | |
| 9179 | |
| 9180 @DomName('Entity.systemId') | |
| 9181 @DocsEditable | |
| 9182 final String systemId; | |
| 9183 } | |
| 9184 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | |
| 9185 // for details. All rights reserved. Use of this source code is governed by a | |
| 9186 // BSD-style license that can be found in the LICENSE file. | |
| 9187 | |
| 9188 // WARNING: Do not edit - generated code. | 9166 // WARNING: Do not edit - generated code. |
| 9189 | 9167 |
| 9190 | 9168 |
| 9191 @DomName('EntriesCallback') | 9169 @DomName('EntriesCallback') |
| 9192 // http://www.w3.org/TR/file-system-api/#the-entriescallback-interface | 9170 // http://www.w3.org/TR/file-system-api/#the-entriescallback-interface |
| 9193 @Experimental | 9171 @Experimental |
| 9194 typedef void _EntriesCallback(List<Entry> entries); | 9172 typedef void _EntriesCallback(List<Entry> entries); |
| 9195 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 9173 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 9196 // for details. All rights reserved. Use of this source code is governed by a | 9174 // for details. All rights reserved. Use of this source code is governed by a |
| 9197 // BSD-style license that can be found in the LICENSE file. | 9175 // BSD-style license that can be found in the LICENSE file. |
| (...skipping 15017 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 24215 @DomName('WebKitPoint.y') | 24193 @DomName('WebKitPoint.y') |
| 24216 @DocsEditable | 24194 @DocsEditable |
| 24217 num y; | 24195 num y; |
| 24218 } | 24196 } |
| 24219 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 24197 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 24220 // for details. All rights reserved. Use of this source code is governed by a | 24198 // for details. All rights reserved. Use of this source code is governed by a |
| 24221 // BSD-style license that can be found in the LICENSE file. | 24199 // BSD-style license that can be found in the LICENSE file. |
| 24222 | 24200 |
| 24223 | 24201 |
| 24224 @DocsEditable | 24202 @DocsEditable |
| 24203 @DomName('Entity') |
| 24204 @Experimental // untriaged |
| 24205 class _Entity extends Node native "Entity" { |
| 24206 |
| 24207 @DomName('Entity.notationName') |
| 24208 @DocsEditable |
| 24209 final String notationName; |
| 24210 |
| 24211 @DomName('Entity.publicId') |
| 24212 @DocsEditable |
| 24213 final String publicId; |
| 24214 |
| 24215 @DomName('Entity.systemId') |
| 24216 @DocsEditable |
| 24217 final String systemId; |
| 24218 } |
| 24219 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 24220 // for details. All rights reserved. Use of this source code is governed by a |
| 24221 // BSD-style license that can be found in the LICENSE file. |
| 24222 |
| 24223 |
| 24224 @DocsEditable |
| 24225 @DomName('EntryArray') | 24225 @DomName('EntryArray') |
| 24226 // http://www.w3.org/TR/file-system-api/#the-entry-interface | 24226 // http://www.w3.org/TR/file-system-api/#the-entry-interface |
| 24227 @Experimental | 24227 @Experimental |
| 24228 class _EntryArray extends Interceptor with ListMixin<Entry>, ImmutableListMixin<
Entry> implements JavaScriptIndexingBehavior, List<Entry> native "EntryArray" { | 24228 class _EntryArray extends Interceptor with ListMixin<Entry>, ImmutableListMixin<
Entry> implements JavaScriptIndexingBehavior, List<Entry> native "EntryArray" { |
| 24229 | 24229 |
| 24230 @DomName('EntryArray.length') | 24230 @DomName('EntryArray.length') |
| 24231 @DocsEditable | 24231 @DocsEditable |
| 24232 int get length => JS("int", "#.length", this); | 24232 int get length => JS("int", "#.length", this); |
| 24233 | 24233 |
| 24234 Entry operator[](int index) { | 24234 Entry operator[](int index) { |
| (...skipping 5122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 29357 _position = nextPosition; | 29357 _position = nextPosition; |
| 29358 return true; | 29358 return true; |
| 29359 } | 29359 } |
| 29360 _current = null; | 29360 _current = null; |
| 29361 _position = _array.length; | 29361 _position = _array.length; |
| 29362 return false; | 29362 return false; |
| 29363 } | 29363 } |
| 29364 | 29364 |
| 29365 T get current => _current; | 29365 T get current => _current; |
| 29366 } | 29366 } |
| OLD | NEW |