123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274 |
- /*
- * Copyright (C)2005-2019 Haxe Foundation
- *
- * Permission is hereby granted, free of charge, to any person obtaining a
- * copy of this software and associated documentation files (the "Software"),
- * to deal in the Software without restriction, including without limitation
- * the rights to use, copy, modify, merge, publish, distribute, sublicense,
- * and/or sell copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
- * DEALINGS IN THE SOFTWARE.
- */
- // This file is generated from mozilla\Node.webidl. Do not edit!
- package js.html;
- /**
- `Node` is an interface from which a number of DOM API object types inherit. It allows those types to be treated similarly; for example, inheriting the same set of methods, or being tested in the same way.
- Documentation [Node](https://developer.mozilla.org/en-US/docs/Web/API/Node) by [Mozilla Contributors](https://developer.mozilla.org/en-US/docs/Web/API/Node$history), licensed under [CC-BY-SA 2.5](https://creativecommons.org/licenses/by-sa/2.5/).
- @see <https://developer.mozilla.org/en-US/docs/Web/API/Node>
- **/
- @:native("Node")
- extern class Node extends EventTarget {
- static inline var ELEMENT_NODE : Int = 1;
- static inline var ATTRIBUTE_NODE : Int = 2;
- static inline var TEXT_NODE : Int = 3;
- static inline var CDATA_SECTION_NODE : Int = 4;
- static inline var ENTITY_REFERENCE_NODE : Int = 5;
- static inline var ENTITY_NODE : Int = 6;
- static inline var PROCESSING_INSTRUCTION_NODE : Int = 7;
- static inline var COMMENT_NODE : Int = 8;
- static inline var DOCUMENT_NODE : Int = 9;
- static inline var DOCUMENT_TYPE_NODE : Int = 10;
- static inline var DOCUMENT_FRAGMENT_NODE : Int = 11;
- static inline var NOTATION_NODE : Int = 12;
- static inline var DOCUMENT_POSITION_DISCONNECTED : Int = 1;
- static inline var DOCUMENT_POSITION_PRECEDING : Int = 2;
- static inline var DOCUMENT_POSITION_FOLLOWING : Int = 4;
- static inline var DOCUMENT_POSITION_CONTAINS : Int = 8;
- static inline var DOCUMENT_POSITION_CONTAINED_BY : Int = 16;
- static inline var DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC : Int = 32;
-
-
- /**
- Returns an <code>unsigned short</code> representing the type of the node. Possible values are:
- <table class="standard-table">
-
- <tr>
- Name
- Value
- </tr>
- <tr>
- <td><code>ELEMENT_NODE</code></td>
- <td><code>1</code></td>
- </tr>
- <tr>
- <td><code>ATTRIBUTE_NODE</code> <em>(deprecated)</em></td>
- <td><code>2</code></td>
- </tr>
- <tr>
- <td><code>TEXT_NODE</code></td>
- <td><code>3</code></td>
- </tr>
- <tr>
- <td><code>CDATA_SECTION_NODE</code> <em>(deprecated)</em></td>
- <td><code>4</code></td>
- </tr>
- <tr>
- <td><code>ENTITY_REFERENCE_NODE</code> <em>(deprecated)</em></td>
- <td><code>5</code></td>
- </tr>
- <tr>
- <td><code>ENTITY_NODE</code> <em>(deprecated)</em></td>
- <td><code>6</code></td>
- </tr>
- <tr>
- <td><code>PROCESSING_INSTRUCTION_NODE</code></td>
- <td><code>7</code></td>
- </tr>
- <tr>
- <td><code>COMMENT_NODE</code></td>
- <td><code>8</code></td>
- </tr>
- <tr>
- <td><code>DOCUMENT_NODE</code></td>
- <td><code>9</code></td>
- </tr>
- <tr>
- <td><code>DOCUMENT_TYPE_NODE</code></td>
- <td><code>10</code></td>
- </tr>
- <tr>
- <td><code>DOCUMENT_FRAGMENT_NODE</code></td>
- <td><code>11</code></td>
- </tr>
- <tr>
- <td><code>NOTATION_NODE</code> <em>(deprecated)</em></td>
- <td><code>12</code></td>
- </tr>
-
- </table>
-
- **/
- var nodeType(default,null) : Int;
-
- /**
- Returns a `DOMString` containing the name of the `Node`. The structure of the name will differ with the node type. E.g. An `HTMLElement` will contain the name of the corresponding tag, like `'audio'` for an `HTMLAudioElement`, a `Text` node will have the `'#text'` string, or a `Document` node will have the `'#document'` string.
- **/
- var nodeName(default,null) : String;
-
- /**
- Returns a `DOMString` representing the base URL. The concept of base URL changes from one language to another; in HTML, it corresponds to the protocol, the domain name and the directory structure, that is all until the last `'/'`.
- **/
- var baseURI(default,null) : String;
-
- /**
- Returns a boolean indicating whether or not the Node is connected (directly or indirectly) to the context object, e.g. the `Document` object in the case of the normal DOM, or the `ShadowRoot` in the case of a shadow DOM.
- **/
- var isConnected(default,null) : Bool;
-
- /**
- Returns the `Document` that this node belongs to. If the node is itself a document, returns `null`.
- **/
- var ownerDocument(default,null) : HTMLDocument;
-
- /**
- Returns a `Node` that is the parent of this node. If there is no such node, like if this node is the top of the tree or if doesn't participate in a tree, this property returns `null`.
- **/
- var parentNode(default,null) : Node;
-
- /**
- Returns an `Element` that is the parent of this node. If the node has no parent, or if that parent is not an `Element`, this property returns `null`.
- **/
- var parentElement(default,null) : Element;
-
- /**
- Returns a live `NodeList` containing all the children of this node. `NodeList` being live means that if the children of the `Node` change, the `NodeList` object is automatically updated.
- **/
- var childNodes(default,null) : NodeList;
-
- /**
- Returns a `Node` representing the first direct child node of the node, or `null` if the node has no child.
- **/
- var firstChild(default,null) : Node;
-
- /**
- Returns a `Node` representing the last direct child node of the node, or `null` if the node has no child.
- **/
- var lastChild(default,null) : Node;
-
- /**
- Returns a `Node` representing the previous node in the tree, or `null` if there isn't such node.
- **/
- var previousSibling(default,null) : Node;
-
- /**
- Returns a `Node` representing the next node in the tree, or `null` if there isn't such node.
- **/
- var nextSibling(default,null) : Node;
-
- /**
- Returns / Sets the value of the current node
- **/
- var nodeValue : String;
-
- /**
- Returns / Sets the textual content of an element and all its descendants.
- **/
- var textContent : String;
-
-
- /**
- Returns the context object's root which optionally includes the shadow root if it is available.
- **/
- @:pure
- function getRootNode( ?options : GetRootNodeOptions ) : Node;
-
- /**
- Returns a `Boolean` indicating if the element has any child nodes, or not.
- **/
- @:pure
- function hasChildNodes() : Bool;
-
- /**
- Inserts a `Node` before the reference node as a child of a specified parent node.
- @throws DOMError
- **/
- function insertBefore( node : Node, child : Node ) : Node;
-
- /**
- Adds the specified childNode argument as the last child to the current node.
-
- If the argument referenced an existing node on the DOM tree, the node will be detached from its current position and attached at the new position.
- @throws DOMError
- **/
- function appendChild( node : Node ) : Node;
-
- /**
- Replaces one child `Node` of the current one with the second one given in parameter.
- @throws DOMError
- **/
- function replaceChild( node : Node, child : Node ) : Node;
-
- /**
- Removes a child node from the current element, which must be a child of the current node.
- @throws DOMError
- **/
- function removeChild( child : Node ) : Node;
-
- /**
- Clean up all the text nodes under this element (merge adjacent, remove empty).
- **/
- function normalize() : Void;
-
- /**
- Clone a `Node`, and optionally, all of its contents. By default, it clones the content of the node.
- @throws DOMError
- **/
- function cloneNode( deep : Bool = false ) : Node;
-
- /**
- Returns a `Boolean` value indicating whether or not the two nodes are the same (that is, they reference the same object).
- **/
- @:pure
- function isSameNode( node : Node ) : Bool;
-
- /**
- Returns a `Boolean` which indicates whether or not two nodes are of the same type and all their defining data points match.
- **/
- @:pure
- function isEqualNode( node : Node ) : Bool;
-
- /**
- Compares the position of the current node against another node in any other document.
- **/
- @:pure
- function compareDocumentPosition( other : Node ) : Int;
-
- /**
- Returns a `Boolean` value indicating whether a node is a descendant of a given node or not.
- **/
- @:pure
- function contains( other : Node ) : Bool;
-
- /**
- Returns a `DOMString` containing the prefix for a given namespace URI, if present, and `null` if not. When multiple prefixes are possible, the result is implementation-dependent.
- **/
- @:pure
- function lookupPrefix( namespace : String ) : String;
-
- /**
- Accepts a prefix and returns the namespace URI associated with it on the given node if found (and `null` if not). Supplying `null` for the prefix will return the default namespace.
- **/
- @:pure
- function lookupNamespaceURI( prefix : String ) : String;
-
- /**
- Accepts a namespace URI as an argument and returns a `Boolean` with a value of `true` if the namespace is the default namespace on the given node or `false` if not.
- **/
- @:pure
- function isDefaultNamespace( namespace : String ) : Bool;
- }
|