| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 // DO NOT EDIT - unless you are editing documentation as per: | 5 // DO NOT EDIT - unless you are editing documentation as per: |
| 6 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation | 6 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation |
| 7 // Auto-generated dart:html library. | 7 // Auto-generated dart:html library. |
| 8 | 8 |
| 9 /** | 9 /** |
| 10 * HTML elements and other resources for web-based applications that need to | 10 * HTML elements and other resources for web-based applications that need to |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 * [Dart Editor](http://www.dartlang.org/#get-started) | 26 * [Dart Editor](http://www.dartlang.org/#get-started) |
| 27 * and run its built-in examples. | 27 * and run its built-in examples. |
| 28 * | 28 * |
| 29 * * For even more examples, see | 29 * * For even more examples, see |
| 30 * [Dart HTML5 Samples](https://github.com/dart-lang/dart-html5-samples) | 30 * [Dart HTML5 Samples](https://github.com/dart-lang/dart-html5-samples) |
| 31 * on Github. | 31 * on Github. |
| 32 */ | 32 */ |
| 33 library dart.dom.html; | 33 library dart.dom.html; |
| 34 | 34 |
| 35 import 'dart:async'; | 35 import 'dart:async'; |
| 36 import 'dart:collection'; | 36 import 'dart:collection' hide LinkedList, LinkedListEntry; |
| 37 import 'dart:_internal' hide Symbol; | 37 import 'dart:_internal' hide Symbol; |
| 38 import 'dart:html_common'; | 38 import 'dart:html_common'; |
| 39 import 'dart:indexed_db'; | 39 import 'dart:indexed_db'; |
| 40 import 'dart:isolate'; | 40 import 'dart:isolate'; |
| 41 import "dart:convert"; | 41 import "dart:convert"; |
| 42 import 'dart:math'; | 42 import 'dart:math'; |
| 43 import 'dart:_native_typed_data'; | 43 import 'dart:_native_typed_data'; |
| 44 import 'dart:typed_data'; | 44 import 'dart:typed_data'; |
| 45 // Not actually used, but imported since dart:html can generate these objects. | 45 // Not actually used, but imported since dart:html can generate these objects. |
| 46 import 'dart:svg' as svg; | 46 import 'dart:svg' as svg; |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 createCustomUpgrader(Type customElementClass, $this) => $this; | 148 createCustomUpgrader(Type customElementClass, $this) => $this; |
| 149 | 149 |
| 150 /** | 150 /** |
| 151 * Emitted for any setlike IDL entry needs a callback signature. | 151 * Emitted for any setlike IDL entry needs a callback signature. |
| 152 * Today there is only one. | 152 * Today there is only one. |
| 153 */ | 153 */ |
| 154 @DomName('FontFaceSetForEachCallback') | 154 @DomName('FontFaceSetForEachCallback') |
| 155 @Experimental() // untriaged | 155 @Experimental() // untriaged |
| 156 typedef void FontFaceSetForEachCallback( | 156 typedef void FontFaceSetForEachCallback( |
| 157 FontFace fontFace, FontFace fontFaceAgain, FontFaceSet set); | 157 FontFace fontFace, FontFace fontFaceAgain, FontFaceSet set); |
| OLD | NEW |