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

Side by Side Diff: client/dom/generated/src/frog/Node.dart

Issue 8387057: Forgot generated code for frog dom. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years, 1 month 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
2 class Node native "Node" {
3
4 NamedNodeMap attributes;
5
6 String baseURI;
7
8 NodeList childNodes;
9
10 Node firstChild;
11
12 Node lastChild;
13
14 String localName;
15
16 String namespaceURI;
17
18 Node nextSibling;
19
20 String nodeName;
21
22 int nodeType;
23
24 String nodeValue;
25
26 Document ownerDocument;
27
28 Element parentElement;
29
30 Node parentNode;
31
32 String prefix;
33
34 Node previousSibling;
35
36 String textContent;
37
38 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
39
40 Node appendChild(Node newChild) native;
41
42 Node cloneNode(bool deep) native;
43
44 int compareDocumentPosition(Node other) native;
45
46 bool contains(Node other) native;
47
48 bool dispatchEvent(Event event) native;
49
50 bool hasAttributes() native;
51
52 bool hasChildNodes() native;
53
54 Node insertBefore(Node newChild, Node refChild) native;
55
56 bool isDefaultNamespace(String namespaceURI) native;
57
58 bool isEqualNode(Node other) native;
59
60 bool isSameNode(Node other) native;
61
62 bool isSupported(String feature, String version) native;
63
64 String lookupNamespaceURI(String prefix) native;
65
66 String lookupPrefix(String namespaceURI) native;
67
68 void normalize() native;
69
70 Node removeChild(Node oldChild) native;
71
72 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
73
74 Node replaceChild(Node newChild, Node oldChild) native;
75
76 var dartObjectLocalStorage;
77
78 String get typeName() native;
79 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/NavigatorUserMediaSuccessCallback.dart ('k') | client/dom/generated/src/frog/NodeFilter.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698