CDATASection
Types
t
A CDATA section that can be used within XML to include extended portions of unescaped text. The symbols < and & don't need escaping as they normally do when inside a CDATA section. See CDATASection 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>, wholeText: string, assignedSlot: Null.t<WebAPI.DOMTree.htmlSlotElement>,}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