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

Unified 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, 2 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 side-by-side diff with in-line comments
Download patch
Index: client/dom/generated/src/frog/Node.dart
diff --git a/client/dom/generated/src/frog/Node.dart b/client/dom/generated/src/frog/Node.dart
new file mode 100644
index 0000000000000000000000000000000000000000..00b763f7c11cd9175cfde313b29893cab33535eb
--- /dev/null
+++ b/client/dom/generated/src/frog/Node.dart
@@ -0,0 +1,79 @@
+
+class Node native "Node" {
+
+ NamedNodeMap attributes;
+
+ String baseURI;
+
+ NodeList childNodes;
+
+ Node firstChild;
+
+ Node lastChild;
+
+ String localName;
+
+ String namespaceURI;
+
+ Node nextSibling;
+
+ String nodeName;
+
+ int nodeType;
+
+ String nodeValue;
+
+ Document ownerDocument;
+
+ Element parentElement;
+
+ Node parentNode;
+
+ String prefix;
+
+ Node previousSibling;
+
+ String textContent;
+
+ void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
+
+ Node appendChild(Node newChild) native;
+
+ Node cloneNode(bool deep) native;
+
+ int compareDocumentPosition(Node other) native;
+
+ bool contains(Node other) native;
+
+ bool dispatchEvent(Event event) native;
+
+ bool hasAttributes() native;
+
+ bool hasChildNodes() native;
+
+ Node insertBefore(Node newChild, Node refChild) native;
+
+ bool isDefaultNamespace(String namespaceURI) native;
+
+ bool isEqualNode(Node other) native;
+
+ bool isSameNode(Node other) native;
+
+ bool isSupported(String feature, String version) native;
+
+ String lookupNamespaceURI(String prefix) native;
+
+ String lookupPrefix(String namespaceURI) native;
+
+ void normalize() native;
+
+ Node removeChild(Node oldChild) native;
+
+ void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
+
+ Node replaceChild(Node newChild, Node oldChild) native;
+
+ var dartObjectLocalStorage;
+
+ String get typeName() native;
+}
« 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