| Index: lib/html/dartium/html_dartium.dart
|
| ===================================================================
|
| --- lib/html/dartium/html_dartium.dart (revision 11420)
|
| +++ lib/html/dartium/html_dartium.dart (working copy)
|
| @@ -4605,17 +4605,6 @@
|
|
|
| // WARNING: Do not edit - generated code.
|
|
|
| -class _DOMFormDataImpl extends NativeFieldWrapperClass1 implements DOMFormData {
|
| -
|
| - void append(String name, String value, String filename) native "DOMFormData_append_Callback";
|
| -
|
| -}
|
| -// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| -// for details. All rights reserved. Use of this source code is governed by a
|
| -// BSD-style license that can be found in the LICENSE file.
|
| -
|
| -// WARNING: Do not edit - generated code.
|
| -
|
| class _DOMImplementationImpl extends NativeFieldWrapperClass1 implements DOMImplementation {
|
|
|
| CSSStyleSheet createCSSStyleSheet(String title, String media) native "DOMImplementation_createCSSStyleSheet_Callback";
|
| @@ -8268,8 +8257,27 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| +class _FormDataFactoryProvider {
|
| + factory FormData([FormElement form]) => _createFormData(form);
|
| + static FormData _createFormData([FormElement form]) native "FormData_constructor_Callback";
|
| +}
|
| +// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| +// for details. All rights reserved. Use of this source code is governed by a
|
| +// BSD-style license that can be found in the LICENSE file.
|
| +
|
| // WARNING: Do not edit - generated code.
|
|
|
| +class _FormDataImpl extends NativeFieldWrapperClass1 implements FormData {
|
| +
|
| + void append(String name, String value, String filename) native "FormData_append_Callback";
|
| +
|
| +}
|
| +// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| +// for details. All rights reserved. Use of this source code is governed by a
|
| +// BSD-style license that can be found in the LICENSE file.
|
| +
|
| +// WARNING: Do not edit - generated code.
|
| +
|
| class _GamepadImpl extends NativeFieldWrapperClass1 implements Gamepad {
|
|
|
| List<num> get axes() native "Gamepad_axes_Getter";
|
| @@ -21138,6 +21146,11 @@
|
| return _e;
|
| }
|
|
|
| + factory FormElement() {
|
| + _HTMLFormElementImpl _e = _document.$dom_createElement("form");
|
| + return _e;
|
| + }
|
| +
|
| factory HRElement() {
|
| _HTMLHRElementImpl _e = _document.$dom_createElement("hr");
|
| return _e;
|
| @@ -25602,18 +25615,6 @@
|
|
|
| // WARNING: Do not edit - generated code.
|
|
|
| -/// @domName DOMFormData
|
| -interface DOMFormData {
|
| -
|
| - /** @domName DOMFormData.append */
|
| - void append(String name, String value, String filename);
|
| -}
|
| -// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| -// for details. All rights reserved. Use of this source code is governed by a
|
| -// BSD-style license that can be found in the LICENSE file.
|
| -
|
| -// WARNING: Do not edit - generated code.
|
| -
|
| /// @domName DOMImplementation
|
| interface DOMImplementation {
|
|
|
| @@ -27945,9 +27946,25 @@
|
|
|
| // WARNING: Do not edit - generated code.
|
|
|
| +/// @domName FormData
|
| +interface FormData default _FormDataFactoryProvider {
|
| +
|
| + FormData([FormElement form]);
|
| +
|
| + /** @domName FormData.append */
|
| + void append(String name, String value, String filename);
|
| +}
|
| +// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| +// for details. All rights reserved. Use of this source code is governed by a
|
| +// BSD-style license that can be found in the LICENSE file.
|
| +
|
| +// WARNING: Do not edit - generated code.
|
| +
|
| /// @domName HTMLFormElement
|
| -interface FormElement extends Element {
|
| +interface FormElement extends Element default _Elements {
|
|
|
| + FormElement();
|
| +
|
| /** @domName HTMLFormElement.acceptCharset */
|
| String acceptCharset;
|
|
|
|
|