| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 import 'dart:svg' show Matrix; | 47 import 'dart:svg' show Matrix; |
| 48 import 'dart:svg' show SvgSvgElement; | 48 import 'dart:svg' show SvgSvgElement; |
| 49 import 'dart:web_audio' as web_audio; | 49 import 'dart:web_audio' as web_audio; |
| 50 import 'dart:web_gl' as gl; | 50 import 'dart:web_gl' as gl; |
| 51 import 'dart:web_gl' show RenderingContext,RenderingContext2; | 51 import 'dart:web_gl' show RenderingContext,RenderingContext2; |
| 52 import 'dart:web_sql'; | 52 import 'dart:web_sql'; |
| 53 import 'dart:_js_helper' show | 53 import 'dart:_js_helper' show |
| 54 convertDartClosureToJS, Creates, JavaScriptIndexingBehavior, | 54 convertDartClosureToJS, Creates, JavaScriptIndexingBehavior, |
| 55 JSName, Native, Returns, ForceInline, | 55 JSName, Native, Returns, ForceInline, |
| 56 findDispatchTagForInterceptorClass, setNativeSubclassDispatchRecord, | 56 findDispatchTagForInterceptorClass, setNativeSubclassDispatchRecord, |
| 57 makeLeafDispatchRecord; | 57 makeLeafDispatchRecord, registerGlobalObject; |
| 58 import 'dart:_interceptors' show | 58 import 'dart:_interceptors' show |
| 59 Interceptor, JSExtendableArray, JSUInt31, | 59 Interceptor, JSExtendableArray, JSUInt31, |
| 60 findInterceptorConstructorForType, | 60 findInterceptorConstructorForType, |
| 61 findConstructorForNativeSubclassType, | 61 findConstructorForNativeSubclassType, |
| 62 getNativeInterceptor, | 62 getNativeInterceptor, |
| 63 setDispatchProperty; | 63 setDispatchProperty; |
| 64 import 'dart:_isolate_helper' show IsolateNatives; | 64 import 'dart:_isolate_helper' show IsolateNatives; |
| 65 import 'dart:_foreign_helper' show JS, JS_INTERCEPTOR_CONSTANT; | 65 import 'dart:_foreign_helper' show JS, JS_INTERCEPTOR_CONSTANT; |
| 66 | 66 |
| 67 export 'dart:math' show Rectangle, Point; | 67 export 'dart:math' show Rectangle, Point; |
| (...skipping 80 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 |