2018-09-13 23:04:55 +03:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-03-31 08:42:20 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* The origin of this IDL file is
|
|
|
|
* http://www.w3.org/TR/2012/WD-dom-20120105/
|
|
|
|
*
|
|
|
|
* Copyright © 2012 W3C® (MIT, ERCIM, Keio), All Rights Reserved. W3C
|
|
|
|
* liability, trademark and document use rules apply.
|
|
|
|
*/
|
|
|
|
|
2012-10-09 16:31:24 +04:00
|
|
|
interface Principal;
|
|
|
|
interface URI;
|
|
|
|
|
2019-09-27 18:26:14 +03:00
|
|
|
[Exposed=Window]
|
2012-03-31 08:42:20 +04:00
|
|
|
interface Node : EventTarget {
|
|
|
|
const unsigned short ELEMENT_NODE = 1;
|
|
|
|
const unsigned short ATTRIBUTE_NODE = 2; // historical
|
|
|
|
const unsigned short TEXT_NODE = 3;
|
|
|
|
const unsigned short CDATA_SECTION_NODE = 4; // historical
|
|
|
|
const unsigned short ENTITY_REFERENCE_NODE = 5; // historical
|
|
|
|
const unsigned short ENTITY_NODE = 6; // historical
|
|
|
|
const unsigned short PROCESSING_INSTRUCTION_NODE = 7;
|
|
|
|
const unsigned short COMMENT_NODE = 8;
|
|
|
|
const unsigned short DOCUMENT_NODE = 9;
|
|
|
|
const unsigned short DOCUMENT_TYPE_NODE = 10;
|
|
|
|
const unsigned short DOCUMENT_FRAGMENT_NODE = 11;
|
|
|
|
const unsigned short NOTATION_NODE = 12; // historical
|
2012-12-26 02:00:15 +04:00
|
|
|
[Constant]
|
2012-03-31 08:42:20 +04:00
|
|
|
readonly attribute unsigned short nodeType;
|
2013-01-30 02:53:53 +04:00
|
|
|
[Pure]
|
2012-03-31 08:42:20 +04:00
|
|
|
readonly attribute DOMString nodeName;
|
|
|
|
|
2017-02-01 23:43:36 +03:00
|
|
|
[Pure, Throws, NeedsCallerType, BinaryName="baseURIFromJS"]
|
2012-03-31 08:42:20 +04:00
|
|
|
readonly attribute DOMString? baseURI;
|
|
|
|
|
2018-08-20 14:56:27 +03:00
|
|
|
[Pure, BinaryName=isInComposedDoc]
|
2016-05-20 11:31:29 +03:00
|
|
|
readonly attribute boolean isConnected;
|
2013-01-30 02:53:53 +04:00
|
|
|
[Pure]
|
2012-03-31 08:42:20 +04:00
|
|
|
readonly attribute Document? ownerDocument;
|
2017-01-15 20:46:00 +03:00
|
|
|
[Pure]
|
2019-07-03 10:52:35 +03:00
|
|
|
Node getRootNode(optional GetRootNodeOptions options = {});
|
2016-03-16 04:49:10 +03:00
|
|
|
[Pure]
|
2012-03-31 08:42:20 +04:00
|
|
|
readonly attribute Node? parentNode;
|
2013-01-30 02:53:53 +04:00
|
|
|
[Pure]
|
2012-03-31 08:42:20 +04:00
|
|
|
readonly attribute Element? parentElement;
|
2013-11-26 05:59:39 +04:00
|
|
|
[Pure]
|
2012-03-31 08:42:20 +04:00
|
|
|
boolean hasChildNodes();
|
2013-08-29 08:30:05 +04:00
|
|
|
[SameObject]
|
2012-03-31 08:42:20 +04:00
|
|
|
readonly attribute NodeList childNodes;
|
2013-01-30 02:53:53 +04:00
|
|
|
[Pure]
|
2012-03-31 08:42:20 +04:00
|
|
|
readonly attribute Node? firstChild;
|
2013-01-30 02:53:53 +04:00
|
|
|
[Pure]
|
2012-03-31 08:42:20 +04:00
|
|
|
readonly attribute Node? lastChild;
|
2013-01-30 02:53:53 +04:00
|
|
|
[Pure]
|
2012-03-31 08:42:20 +04:00
|
|
|
readonly attribute Node? previousSibling;
|
2013-01-30 02:53:53 +04:00
|
|
|
[Pure]
|
2012-03-31 08:42:20 +04:00
|
|
|
readonly attribute Node? nextSibling;
|
|
|
|
|
2017-06-29 17:25:00 +03:00
|
|
|
[CEReactions, SetterThrows, Pure]
|
2012-03-31 08:42:20 +04:00
|
|
|
attribute DOMString? nodeValue;
|
2017-12-21 01:43:18 +03:00
|
|
|
[CEReactions, SetterThrows, GetterCanOOM,
|
|
|
|
SetterNeedsSubjectPrincipal=NonSystem, Pure]
|
2012-03-31 08:42:20 +04:00
|
|
|
attribute DOMString? textContent;
|
2018-06-29 23:39:46 +03:00
|
|
|
// These DOM methods cannot be accessed by UA Widget scripts
|
|
|
|
// because the DOM element reflectors will be in the content scope,
|
|
|
|
// instead of the desired UA Widget scope.
|
|
|
|
[CEReactions, Throws, Func="IsNotUAWidget"]
|
2012-03-31 08:42:20 +04:00
|
|
|
Node insertBefore(Node node, Node? child);
|
2018-06-29 23:39:46 +03:00
|
|
|
[CEReactions, Throws, Func="IsNotUAWidget"]
|
2012-03-31 08:42:20 +04:00
|
|
|
Node appendChild(Node node);
|
2018-06-29 23:39:46 +03:00
|
|
|
[CEReactions, Throws, Func="IsNotUAWidget"]
|
2012-03-31 08:42:20 +04:00
|
|
|
Node replaceChild(Node node, Node child);
|
2017-06-29 17:25:00 +03:00
|
|
|
[CEReactions, Throws]
|
2012-03-31 08:42:20 +04:00
|
|
|
Node removeChild(Node child);
|
2017-06-29 17:25:00 +03:00
|
|
|
[CEReactions]
|
2012-03-31 08:42:20 +04:00
|
|
|
void normalize();
|
|
|
|
|
2018-06-29 23:39:46 +03:00
|
|
|
[CEReactions, Throws, Func="IsNotUAWidget"]
|
2013-12-20 23:28:17 +04:00
|
|
|
Node cloneNode(optional boolean deep = false);
|
2013-11-26 05:59:39 +04:00
|
|
|
[Pure]
|
2016-03-25 13:23:50 +03:00
|
|
|
boolean isSameNode(Node? node);
|
|
|
|
[Pure]
|
2012-03-31 08:42:20 +04:00
|
|
|
boolean isEqualNode(Node? node);
|
|
|
|
|
2012-10-09 16:31:24 +04:00
|
|
|
const unsigned short DOCUMENT_POSITION_DISCONNECTED = 0x01;
|
|
|
|
const unsigned short DOCUMENT_POSITION_PRECEDING = 0x02;
|
|
|
|
const unsigned short DOCUMENT_POSITION_FOLLOWING = 0x04;
|
|
|
|
const unsigned short DOCUMENT_POSITION_CONTAINS = 0x08;
|
|
|
|
const unsigned short DOCUMENT_POSITION_CONTAINED_BY = 0x10;
|
|
|
|
const unsigned short DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC = 0x20; // historical
|
2013-11-26 05:59:39 +04:00
|
|
|
[Pure]
|
2012-10-09 16:31:24 +04:00
|
|
|
unsigned short compareDocumentPosition(Node other);
|
2013-11-26 05:59:39 +04:00
|
|
|
[Pure]
|
2012-10-09 16:31:24 +04:00
|
|
|
boolean contains(Node? other);
|
|
|
|
|
2013-11-26 05:59:39 +04:00
|
|
|
[Pure]
|
2012-10-09 16:31:24 +04:00
|
|
|
DOMString? lookupPrefix(DOMString? namespace);
|
2013-11-26 05:59:39 +04:00
|
|
|
[Pure]
|
2012-10-09 16:31:24 +04:00
|
|
|
DOMString? lookupNamespaceURI(DOMString? prefix);
|
2013-11-26 05:59:39 +04:00
|
|
|
[Pure]
|
2012-03-31 08:42:20 +04:00
|
|
|
boolean isDefaultNamespace(DOMString? namespace);
|
2012-10-09 16:31:24 +04:00
|
|
|
|
|
|
|
// Mozilla-specific stuff
|
|
|
|
[ChromeOnly]
|
|
|
|
readonly attribute Principal nodePrincipal;
|
|
|
|
[ChromeOnly]
|
|
|
|
readonly attribute URI? baseURIObject;
|
2013-09-11 23:43:01 +04:00
|
|
|
[ChromeOnly]
|
2017-06-15 04:49:17 +03:00
|
|
|
DOMString generateXPath();
|
2018-08-02 14:54:15 +03:00
|
|
|
[ChromeOnly, Pure, BinaryName="flattenedTreeParentNodeNonInline"]
|
|
|
|
readonly attribute Node? flattenedTreeParentNode;
|
2019-11-18 22:06:50 +03:00
|
|
|
[ChromeOnly, Pure, BinaryName="isInNativeAnonymousSubtree"]
|
|
|
|
readonly attribute boolean isNativeAnonymous;
|
2016-08-23 21:15:15 +03:00
|
|
|
|
2020-01-31 12:43:23 +03:00
|
|
|
// Maybe this would be useful to authors? https://github.com/whatwg/dom/issues/826
|
2020-02-05 00:28:57 +03:00
|
|
|
[Func="IsChromeOrUAWidget", Pure, BinaryName="containingShadow"]
|
2020-01-31 12:43:23 +03:00
|
|
|
readonly attribute ShadowRoot? containingShadowRoot;
|
|
|
|
|
2019-02-02 01:29:34 +03:00
|
|
|
// Mozilla devtools-specific stuff
|
|
|
|
/**
|
|
|
|
* If this element is a flex item (or has one or more anonymous box ancestors
|
|
|
|
* that chain up to an anonymous flex item), then this method returns the
|
|
|
|
* flex container that the flex item participates in. Otherwise, this method
|
|
|
|
* returns null.
|
|
|
|
*/
|
|
|
|
[ChromeOnly]
|
|
|
|
readonly attribute Element? parentFlexElement;
|
|
|
|
|
2016-09-02 19:03:20 +03:00
|
|
|
#ifdef ACCESSIBILITY
|
2018-05-26 16:47:48 +03:00
|
|
|
[Func="mozilla::dom::AccessibleNode::IsAOMEnabled", SameObject]
|
2016-08-23 21:15:15 +03:00
|
|
|
readonly attribute AccessibleNode? accessibleNode;
|
2016-09-02 19:03:20 +03:00
|
|
|
#endif
|
2012-10-09 16:31:24 +04:00
|
|
|
};
|
2017-01-15 20:46:00 +03:00
|
|
|
|
|
|
|
dictionary GetRootNodeOptions {
|
|
|
|
boolean composed = false;
|
|
|
|
};
|