| /* |
| * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. |
| * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> |
| * |
| * This library is free software; you can redistribute it and/or |
| * modify it under the terms of the GNU Library General Public |
| * License as published by the Free Software Foundation; either |
| * version 2 of the License, or (at your option) any later version. |
| * |
| * This library is distributed in the hope that it will be useful, |
| * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| * Library General Public License for more details. |
| * |
| * You should have received a copy of the GNU Library General Public License |
| * along with this library; see the file COPYING.LIB. If not, write to |
| * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| * Boston, MA 02110-1301, USA. |
| */ |
| |
| [ |
| CustomIsReachable, |
| CustomToJSObject, |
| ExportMacro=WEBCORE_EXPORT, |
| JSCustomHeader, |
| JSCustomMarkFunction, |
| JSCustomPushEventHandlerScope, |
| ObjCPolymorphic, |
| ] interface Node |
| #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C |
| : Object, EventTarget |
| #else |
| : EventTarget |
| #endif |
| { |
| // NodeType |
| const unsigned short ELEMENT_NODE = 1; |
| const unsigned short ATTRIBUTE_NODE = 2; |
| const unsigned short TEXT_NODE = 3; |
| const unsigned short CDATA_SECTION_NODE = 4; |
| const unsigned short ENTITY_REFERENCE_NODE = 5; |
| const unsigned short ENTITY_NODE = 6; |
| 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; |
| |
| readonly attribute DOMString nodeName; |
| |
| // FIXME: the spec says this can also raise on retrieval. |
| [SetterRaisesException] attribute DOMString? nodeValue; |
| |
| readonly attribute unsigned short nodeType; |
| readonly attribute Node parentNode; |
| readonly attribute NodeList childNodes; |
| readonly attribute Node firstChild; |
| readonly attribute Node lastChild; |
| readonly attribute Node previousSibling; |
| readonly attribute Node nextSibling; |
| readonly attribute Document ownerDocument; |
| |
| [ObjCLegacyUnnamedParameters, Custom, RaisesException] Node insertBefore([CustomReturn] Node newChild, Node? refChild); |
| [ObjCLegacyUnnamedParameters, Custom, RaisesException] Node replaceChild(Node newChild, [CustomReturn] Node oldChild); |
| [Custom, RaisesException] Node removeChild([CustomReturn] Node oldChild); |
| [Custom, RaisesException] Node appendChild([CustomReturn] Node newChild); |
| |
| boolean hasChildNodes(); |
| |
| [NewObject, RaisesException, ImplementedAs=cloneNodeForBindings, InvokesCustomElementLifecycleCallbacks] |
| Node cloneNode(optional boolean deep = false); |
| |
| void normalize(); |
| |
| // Introduced in DOM Level 2: |
| |
| #if !defined(LANGUAGE_JAVASCRIPT) || !LANGUAGE_JAVASCRIPT |
| [ObjCLegacyUnnamedParameters, ImplementedAs=isSupportedForBindings] boolean isSupported(optional DOMString feature, optional DOMString version); |
| #endif |
| |
| readonly attribute DOMString? namespaceURI; |
| [SetterRaisesException] attribute DOMString? prefix; |
| readonly attribute DOMString? localName; |
| |
| #if defined(LANGUAGE_OBJECTIVE_C) |
| readonly attribute NamedNodeMap attributes; |
| boolean hasAttributes(); |
| #endif |
| |
| |
| // Introduced in DOM Level 3: |
| |
| readonly attribute DOMString? baseURI; |
| |
| // FIXME: the spec says this can also raise on retrieval. |
| [SetterRaisesException] attribute DOMString? textContent; |
| |
| // FIXME: other should not be optional. |
| boolean isSameNode(optional Node? other = null); |
| // FIXME: other should not be optional. |
| boolean isEqualNode(optional Node? other = null); |
| |
| DOMString? lookupPrefix(optional DOMString? namespaceURI = null); |
| boolean isDefaultNamespace(optional DOMString? namespaceURI = null); |
| DOMString? lookupNamespaceURI(optional DOMString? prefix = null); |
| |
| // DocumentPosition |
| 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; |
| |
| // FIXME: other should be neither optional nor nullable. |
| unsigned short compareDocumentPosition(optional Node? other = null); |
| |
| // Introduced in DOM4 |
| // FIXME: other should not be optional. |
| boolean contains(optional Node? other = null); |
| |
| // IE extensions |
| readonly attribute Element parentElement; |
| |
| #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C |
| // Objective-C extensions |
| readonly attribute boolean isContentEditable; |
| |
| void inspect(); |
| #endif |
| }; |
| |