| 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 HTMLAnchorElement |
| 10 interface AnchorElement extends Element default _Elements { |
| 11 |
| 12 AnchorElement([String href]); |
| 13 |
| 14 /** @domName HTMLAnchorElement.charset */ |
| 15 String charset; |
| 16 |
| 17 /** @domName HTMLAnchorElement.coords */ |
| 18 String coords; |
| 19 |
| 20 /** @domName HTMLAnchorElement.download */ |
| 21 String download; |
| 22 |
| 23 /** @domName HTMLAnchorElement.hash */ |
| 24 String hash; |
| 25 |
| 26 /** @domName HTMLAnchorElement.host */ |
| 27 String host; |
| 28 |
| 29 /** @domName HTMLAnchorElement.hostname */ |
| 30 String hostname; |
| 31 |
| 32 /** @domName HTMLAnchorElement.href */ |
| 33 String href; |
| 34 |
| 35 /** @domName HTMLAnchorElement.hreflang */ |
| 36 String hreflang; |
| 37 |
| 38 /** @domName HTMLAnchorElement.name */ |
| 39 String name; |
| 40 |
| 41 /** @domName HTMLAnchorElement.origin */ |
| 42 final String origin; |
| 43 |
| 44 /** @domName HTMLAnchorElement.pathname */ |
| 45 String pathname; |
| 46 |
| 47 /** @domName HTMLAnchorElement.ping */ |
| 48 String ping; |
| 49 |
| 50 /** @domName HTMLAnchorElement.port */ |
| 51 String port; |
| 52 |
| 53 /** @domName HTMLAnchorElement.protocol */ |
| 54 String protocol; |
| 55 |
| 56 /** @domName HTMLAnchorElement.rel */ |
| 57 String rel; |
| 58 |
| 59 /** @domName HTMLAnchorElement.rev */ |
| 60 String rev; |
| 61 |
| 62 /** @domName HTMLAnchorElement.search */ |
| 63 String search; |
| 64 |
| 65 /** @domName HTMLAnchorElement.shape */ |
| 66 String shape; |
| 67 |
| 68 /** @domName HTMLAnchorElement.target */ |
| 69 String target; |
| 70 |
| 71 /** @domName HTMLAnchorElement.type */ |
| 72 String type; |
| 73 |
| 74 /** @domName HTMLAnchorElement.toString */ |
| 75 String toString(); |
| 76 } |
| OLD | NEW |