| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 // WARNING: |
| 6 // This file contains documentation that is merged into the real source. |
| 7 // Do not make code changes here. |
| 8 |
| 9 /// @domName HTMLFormElement |
| 10 interface FormElement extends Element { |
| 11 |
| 12 /** @domName HTMLFormElement.acceptCharset */ |
| 13 String acceptCharset; |
| 14 |
| 15 /** @domName HTMLFormElement.action */ |
| 16 String action; |
| 17 |
| 18 /** @domName HTMLFormElement.autocomplete */ |
| 19 String autocomplete; |
| 20 |
| 21 /** @domName HTMLFormElement.encoding */ |
| 22 String encoding; |
| 23 |
| 24 /** @domName HTMLFormElement.enctype */ |
| 25 String enctype; |
| 26 |
| 27 /** @domName HTMLFormElement.length */ |
| 28 final int length; |
| 29 |
| 30 /** @domName HTMLFormElement.method */ |
| 31 String method; |
| 32 |
| 33 /** @domName HTMLFormElement.name */ |
| 34 String name; |
| 35 |
| 36 /** @domName HTMLFormElement.noValidate */ |
| 37 bool noValidate; |
| 38 |
| 39 /** @domName HTMLFormElement.target */ |
| 40 String target; |
| 41 |
| 42 /** @domName HTMLFormElement.checkValidity */ |
| 43 bool checkValidity(); |
| 44 |
| 45 /** @domName HTMLFormElement.reset */ |
| 46 void reset(); |
| 47 |
| 48 /** @domName HTMLFormElement.submit */ |
| 49 void submit(); |
| 50 } |
| OLD | NEW |