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

Unified Diff: client/html/generated/html/interface/Node.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, 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 side-by-side diff with in-line comments
Download patch
Index: client/html/generated/html/interface/Node.dart
diff --git a/client/html/generated/html/interface/Node.dart b/client/html/generated/html/interface/Node.dart
new file mode 100644
index 0000000000000000000000000000000000000000..bbefd00cc7ef6ca2f101ae392e28582ed0cb5d96
--- /dev/null
+++ b/client/html/generated/html/interface/Node.dart
@@ -0,0 +1,82 @@
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+// WARNING: Do not edit - generated code.
+
+interface Node extends EventTarget {
+ NodeList get nodes();
+
+ // TODO: The type of value should be Collection<Node>. See http://b/5392897
+ void set nodes(value);
+
+ Node replaceWith(Node otherNode);
+
+ Node remove();
+
+
+ static final int ATTRIBUTE_NODE = 2;
+
+ static final int CDATA_SECTION_NODE = 4;
+
+ static final int COMMENT_NODE = 8;
+
+ static final int DOCUMENT_FRAGMENT_NODE = 11;
+
+ static final int DOCUMENT_NODE = 9;
+
+ static final int DOCUMENT_POSITION_CONTAINED_BY = 0x10;
+
+ static final int DOCUMENT_POSITION_CONTAINS = 0x08;
+
+ static final int DOCUMENT_POSITION_DISCONNECTED = 0x01;
+
+ static final int DOCUMENT_POSITION_FOLLOWING = 0x04;
+
+ static final int DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC = 0x20;
+
+ static final int DOCUMENT_POSITION_PRECEDING = 0x02;
+
+ static final int DOCUMENT_TYPE_NODE = 10;
+
+ static final int ELEMENT_NODE = 1;
+
+ static final int ENTITY_NODE = 6;
+
+ static final int ENTITY_REFERENCE_NODE = 5;
+
+ static final int NOTATION_NODE = 12;
+
+ static final int PROCESSING_INSTRUCTION_NODE = 7;
+
+ static final int TEXT_NODE = 3;
+
+ final NamedNodeMap _attributes;
+
+ final NodeList _childNodes;
+
+ final Node nextNode;
+
+ final Document document;
+
+ final Node parent;
+
+ final Node previousNode;
+
+ String text;
+
+ Node _appendChild(Node newChild);
+
+ Node clone(bool deep);
+
+ bool contains(Node other);
+
+ bool hasChildNodes();
+
+ Node insertBefore(Node newChild, Node refChild);
+
+ Node _removeChild(Node oldChild);
+
+ Node _replaceChild(Node newChild, Node oldChild);
+
+}

Powered by Google App Engine
This is Rietveld 408576698