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

Side by Side Diff: client/html/generated/src/interface/AnchorElement.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 // WARNING: Do not edit - generated code.
6
7 interface AnchorElement extends Element {
8
9 String get accessKey();
10
11 void set accessKey(String value);
12
13 String get charset();
14
15 void set charset(String value);
16
17 String get coords();
18
19 void set coords(String value);
20
21 String get download();
22
23 void set download(String value);
24
25 String get hash();
26
27 void set hash(String value);
28
29 String get host();
30
31 void set host(String value);
32
33 String get hostname();
34
35 void set hostname(String value);
36
37 String get href();
38
39 void set href(String value);
40
41 String get hreflang();
42
43 void set hreflang(String value);
44
45 String get name();
46
47 void set name(String value);
48
49 String get origin();
50
51 String get pathname();
52
53 void set pathname(String value);
54
55 String get ping();
56
57 void set ping(String value);
58
59 String get port();
60
61 void set port(String value);
62
63 String get protocol();
64
65 void set protocol(String value);
66
67 String get rel();
68
69 void set rel(String value);
70
71 String get rev();
72
73 void set rev(String value);
74
75 String get search();
76
77 void set search(String value);
78
79 String get shape();
80
81 void set shape(String value);
82
83 String get target();
84
85 void set target(String value);
86
87 String get text();
88
89 String get type();
90
91 void set type(String value);
92
93 String getParameter(String name);
94
95 String toString();
96 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698