| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 // WARNING: Do not edit - generated code. | 5 // WARNING: Do not edit - generated code. |
| 6 | 6 |
| 7 interface HTMLAreaElement extends HTMLElement { | 7 interface HTMLAreaElement extends HTMLElement { |
| 8 | 8 |
| 9 String get accessKey(); |
| 10 |
| 11 void set accessKey(String value); |
| 12 |
| 9 String get alt(); | 13 String get alt(); |
| 10 | 14 |
| 11 void set alt(String value); | 15 void set alt(String value); |
| 12 | 16 |
| 13 String get coords(); | 17 String get coords(); |
| 14 | 18 |
| 15 void set coords(String value); | 19 void set coords(String value); |
| 16 | 20 |
| 17 String get hash(); | 21 String get hash(); |
| 18 | 22 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 41 String get search(); | 45 String get search(); |
| 42 | 46 |
| 43 String get shape(); | 47 String get shape(); |
| 44 | 48 |
| 45 void set shape(String value); | 49 void set shape(String value); |
| 46 | 50 |
| 47 String get target(); | 51 String get target(); |
| 48 | 52 |
| 49 void set target(String value); | 53 void set target(String value); |
| 50 } | 54 } |
| OLD | NEW |