| 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..c0e6cf97f909cd41b783513d96c41c7e8782d42f
|
| --- /dev/null
|
| +++ b/client/html/generated/html/interface/Node.dart
|
| @@ -0,0 +1,84 @@
|
| +// Copyright (c) 2011, 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 get nextNode();
|
| +
|
| + Document get document();
|
| +
|
| + Node get parent();
|
| +
|
| + Node get previousNode();
|
| +
|
| + String get text();
|
| +
|
| + void set text(String 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 Node nextSibling;
|
| +
|
| + final Document ownerDocument;
|
| +
|
| + final Node parentNode;
|
| +
|
| + final Node previousSibling;
|
| +
|
| + String textContent;
|
| +
|
| + Node cloneNode(bool deep);
|
| +
|
| + bool contains(Node other);
|
| +
|
| + bool hasChildNodes();
|
| +
|
| + Node insertBefore(Node newChild, Node refChild);
|
| +
|
| +}
|
|
|