Class NodeAbstract

This object will be used as the prototype for Nodes when creating a DOM-Level-1-compliant structure.

Hierarchy (view full)

Constructors

Properties

endIndex: null | number = null

The end index of the node. Requires withEndIndices on the handler to be `true.

next: null | ChildNode = null

Next sibling

nodeType: number

DOM spec-compatible node type.

parent: null | ParentNode = null

Parent of the node

prev: null | ChildNode = null

Previous sibling

sourceCodeLocation?: null | SourceCodeLocation

parse5 source code location info.

Available if parsing with parse5 and location info is enabled.

startIndex: null | number = null

The start index of the node. Requires withStartIndices on the handler to be `true.

The type of the node.

Accessors

Methods

  • Clone this node, and optionally its children.

    Type Parameters

    Parameters

    • this: T
    • recursive: boolean = false

      Clone child nodes as well.

    Returns T

    A clone of the node.