Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(135)

Side by Side Diff: client/dom/generated/src/interface/HTMLAnchorElement.dart

Issue 9341007: Use 'field' syntax in dart:dom interfaces. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 HTMLAnchorElement extends HTMLElement { 7 interface HTMLAnchorElement extends HTMLElement {
8 8
9 String get charset(); 9 String charset;
10 10
11 void set charset(String value); 11 String coords;
12 12
13 String get coords(); 13 String download;
14 14
15 void set coords(String value); 15 String hash;
16 16
17 String get download(); 17 String host;
18 18
19 void set download(String value); 19 String hostname;
20 20
21 String get hash(); 21 String href;
22 22
23 void set hash(String value); 23 String hreflang;
24 24
25 String get host(); 25 String name;
26 26
27 void set host(String value); 27 final String origin;
28 28
29 String get hostname(); 29 String pathname;
30 30
31 void set hostname(String value); 31 String ping;
32 32
33 String get href(); 33 String port;
34 34
35 void set href(String value); 35 String protocol;
36 36
37 String get hreflang(); 37 String rel;
38 38
39 void set hreflang(String value); 39 String rev;
40 40
41 String get name(); 41 String search;
42 42
43 void set name(String value); 43 String shape;
44 44
45 String get origin(); 45 String target;
46 46
47 String get pathname(); 47 final String text;
48 48
49 void set pathname(String value); 49 String type;
50
51 String get ping();
52
53 void set ping(String value);
54
55 String get port();
56
57 void set port(String value);
58
59 String get protocol();
60
61 void set protocol(String value);
62
63 String get rel();
64
65 void set rel(String value);
66
67 String get rev();
68
69 void set rev(String value);
70
71 String get search();
72
73 void set search(String value);
74
75 String get shape();
76
77 void set shape(String value);
78
79 String get target();
80
81 void set target(String value);
82
83 String get text();
84
85 String get type();
86
87 void set type(String value);
88 50
89 String toString(); 51 String toString();
90 } 52 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698