| OLD | NEW |
| 1 library html; | 1 library html; |
| 2 | 2 |
| 3 import 'dart:collection'; | 3 import 'dart:collection'; |
| 4 import 'dart:html_common'; | 4 import 'dart:html_common'; |
| 5 import 'dart:indexed_db'; | 5 import 'dart:indexed_db'; |
| 6 import 'dart:isolate'; | 6 import 'dart:isolate'; |
| 7 import 'dart:json'; | 7 import 'dart:json'; |
| 8 import 'dart:nativewrappers'; | 8 import 'dart:nativewrappers'; |
| 9 import 'dart:svg' as svg; | 9 import 'dart:svg' as svg; |
| 10 import 'dart:web_audio' as web_audio; | 10 import 'dart:web_audio' as web_audio; |
| (...skipping 10952 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 10963 factory FormData([FormElement form]) { | 10963 factory FormData([FormElement form]) { |
| 10964 if (!?form) { | 10964 if (!?form) { |
| 10965 return _FormDataFactoryProvider.createFormData(); | 10965 return _FormDataFactoryProvider.createFormData(); |
| 10966 } | 10966 } |
| 10967 return _FormDataFactoryProvider.createFormData(form); | 10967 return _FormDataFactoryProvider.createFormData(form); |
| 10968 } | 10968 } |
| 10969 FormData.internal(); | 10969 FormData.internal(); |
| 10970 | 10970 |
| 10971 | 10971 |
| 10972 /** @domName DOMFormData.append */ | 10972 /** @domName DOMFormData.append */ |
| 10973 void append(String name, String value, String filename) native "DOMFormData_ap
pend_Callback"; | 10973 void append(String name, value, [String filename]) native "DOMFormData_append_
Callback"; |
| 10974 | 10974 |
| 10975 } | 10975 } |
| 10976 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 10976 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 10977 // for details. All rights reserved. Use of this source code is governed by a | 10977 // for details. All rights reserved. Use of this source code is governed by a |
| 10978 // BSD-style license that can be found in the LICENSE file. | 10978 // BSD-style license that can be found in the LICENSE file. |
| 10979 | 10979 |
| 10980 // WARNING: Do not edit - generated code. | 10980 // WARNING: Do not edit - generated code. |
| 10981 | 10981 |
| 10982 | 10982 |
| 10983 /// @domName HTMLFormElement | 10983 /// @domName HTMLFormElement |
| (...skipping 18750 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 29734 bool get isEmpty => Maps.isEmpty(this); | 29734 bool get isEmpty => Maps.isEmpty(this); |
| 29735 } | 29735 } |
| 29736 | 29736 |
| 29737 get _printClosure => (s) { | 29737 get _printClosure => (s) { |
| 29738 try { | 29738 try { |
| 29739 window.console.log(s); | 29739 window.console.log(s); |
| 29740 } catch (_) { | 29740 } catch (_) { |
| 29741 _Utils.print(s); | 29741 _Utils.print(s); |
| 29742 } | 29742 } |
| 29743 }; | 29743 }; |
| OLD | NEW |