ProcessingInstruction
Types
t
A processing instruction embeds application-specific instructions in XML which can be ignored by other applications that don't recognize them. See ProcessingInstruction on MDN
type t = { nodeType: int, nodeName: string, baseURI: string, isConnected: bool, ownerDocument: Null.t<WebAPI.DOM.document>, parentNode: Null.t<WebAPI.DOMTree.node>, parentElement: Null.t<WebAPI.DOMTree.htmlElement>, childNodes: WebAPI.DOM.nodeList<WebAPI.DOMTree.node>, firstChild: Null.t<WebAPI.DOMTree.node>, lastChild: Null.t<WebAPI.DOMTree.node>, previousSibling: Null.t<WebAPI.DOMTree.node>, nextSibling: Null.t<WebAPI.DOMTree.node>, mutable nodeValue: Null.t<string>, mutable textContent: Null.t<string>, mutable data: string, length: int, previousElementSibling: Null.t<WebAPI.DOMTree.element>, nextElementSibling: Null.t<WebAPI.DOMTree.element>, target: string, sheet: Null.t<WebAPI.StyleSheet.cssStyleSheet>,}Record fields
ownerDocument
Null.t<WebAPI.DOM.document>
Returns the node document. Returns null for documents. Read more on MDN
previousElementSibling
Null.t<WebAPI.DOMTree.element>
Returns the first preceding sibling that is an element, and null otherwise. Read more on MDN
nextElementSibling
Null.t<WebAPI.DOMTree.element>
Returns the first following sibling that is an element, and null otherwise. Read more on MDN