Flyweight DOM - v2.3.0
    Preparing search index...

    Node on MDN

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    firstChild: null | ChildNode = null

    Node.firstChild on MDN

    lastChild: null | ChildNode = null

    Node.lastChild on MDN

    nextSibling: null | ChildNode = null

    Node.nextSibling on MDN

    nodeName: string

    Node.nodeName on MDN

    nodeType: number

    Node.nodeType on MDN

    parentNode: null | ParentNode = null

    Node.parentNode on MDN

    previousSibling: null | ChildNode = null
    ATTRIBUTE_NODE: number = 2
    CDATA_SECTION_NODE: number = 4
    COMMENT_NODE: number = 8
    DOCUMENT_FRAGMENT_NODE: number = 11
    DOCUMENT_NODE: number = 9
    DOCUMENT_TYPE_NODE: number = 10
    ELEMENT_NODE: number = 1
    PROCESSING_INSTRUCTION_NODE: number = 7
    TEXT_NODE: number = 3

    Accessors

    • get nodeValue(): null | string

      Returns null | string

      Node.nodeValue on MDN

    • set nodeValue(value: null | string): void

      Parameters

      • value: null | string

      Returns void

    • get textContent(): null | string

      Returns null | string

      Node.textContent on MDN

    • set textContent(value: null | string): void

      Parameters

      • value: null | string

      Returns void

    Methods

    • Parameters

      • node: undefined | null | Node

      Returns boolean

      Node.contains on MDN

    • Parameters

      • otherNode: undefined | null | Node

      Returns boolean

      Node.isEqualNode on MDN