| 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);
|
| +
|
| +}
|
|
|