| 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 5555 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5566 class CssUnknownRule extends CssRule native "CSSUnknownRule" { | 5566 class CssUnknownRule extends CssRule native "CSSUnknownRule" { |
| 5567 } | 5567 } |
| 5568 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5568 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5569 // for details. All rights reserved. Use of this source code is governed by a | 5569 // for details. All rights reserved. Use of this source code is governed by a |
| 5570 // BSD-style license that can be found in the LICENSE file. | 5570 // BSD-style license that can be found in the LICENSE file. |
| 5571 | 5571 |
| 5572 | 5572 |
| 5573 @DocsEditable | 5573 @DocsEditable |
| 5574 @DomName('CustomElementConstructor') | 5574 @DomName('CustomElementConstructor') |
| 5575 // https://dvcs.w3.org/hg/webcomponents/raw-file/tip/spec/custom/index.html#dfn-
custom-element-constructor-generation | 5575 // https://dvcs.w3.org/hg/webcomponents/raw-file/tip/spec/custom/index.html#dfn-
custom-element-constructor-generation |
| 5576 @Experimental | 5576 @deprecated // experimental |
| 5577 class CustomElementConstructor native "CustomElementConstructor" { | 5577 class CustomElementConstructor native "CustomElementConstructor" { |
| 5578 } | 5578 } |
| 5579 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5579 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5580 // for details. All rights reserved. Use of this source code is governed by a | 5580 // for details. All rights reserved. Use of this source code is governed by a |
| 5581 // BSD-style license that can be found in the LICENSE file. | 5581 // BSD-style license that can be found in the LICENSE file. |
| 5582 | 5582 |
| 5583 // WARNING: Do not edit - generated code. | 5583 // WARNING: Do not edit - generated code. |
| 5584 | 5584 |
| 5585 | 5585 |
| 5586 @DomName('CustomEvent') | 5586 @DomName('CustomEvent') |
| (...skipping 23729 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 29316 _position = nextPosition; | 29316 _position = nextPosition; |
| 29317 return true; | 29317 return true; |
| 29318 } | 29318 } |
| 29319 _current = null; | 29319 _current = null; |
| 29320 _position = _array.length; | 29320 _position = _array.length; |
| 29321 return false; | 29321 return false; |
| 29322 } | 29322 } |
| 29323 | 29323 |
| 29324 T get current => _current; | 29324 T get current => _current; |
| 29325 } | 29325 } |
| OLD | NEW |