| 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: Do not edit - generated code. |
| 6 |
| 7 /// @domName HTMLAreaElement |
| 8 interface AreaElement extends Element default _Elements { |
| 9 |
| 10 AreaElement(); |
| 11 |
| 12 /** @domName HTMLAreaElement.alt */ |
| 13 String alt; |
| 14 |
| 15 /** @domName HTMLAreaElement.coords */ |
| 16 String coords; |
| 17 |
| 18 /** @domName HTMLAreaElement.hash */ |
| 19 final String hash; |
| 20 |
| 21 /** @domName HTMLAreaElement.host */ |
| 22 final String host; |
| 23 |
| 24 /** @domName HTMLAreaElement.hostname */ |
| 25 final String hostname; |
| 26 |
| 27 /** @domName HTMLAreaElement.href */ |
| 28 String href; |
| 29 |
| 30 /** @domName HTMLAreaElement.noHref */ |
| 31 bool noHref; |
| 32 |
| 33 /** @domName HTMLAreaElement.pathname */ |
| 34 final String pathname; |
| 35 |
| 36 /** @domName HTMLAreaElement.ping */ |
| 37 String ping; |
| 38 |
| 39 /** @domName HTMLAreaElement.port */ |
| 40 final String port; |
| 41 |
| 42 /** @domName HTMLAreaElement.protocol */ |
| 43 final String protocol; |
| 44 |
| 45 /** @domName HTMLAreaElement.search */ |
| 46 final String search; |
| 47 |
| 48 /** @domName HTMLAreaElement.shape */ |
| 49 String shape; |
| 50 |
| 51 /** @domName HTMLAreaElement.target */ |
| 52 String target; |
| 53 } |
| OLD | NEW |