Node
data class Node(nodeId: NodeId, parentId: NodeId?, backendNodeId: BackendNodeId, nodeType: Int, nodeName: String, localName: String, nodeValue: String, childNodeCount: Int?, children: List<Node>?, attributes: List<String>?, documentURL: String?, baseURL: String?, publicId: String?, systemId: String?, internalSubset: String?, xmlVersion: String?, name: String?, value: String?, pseudoType: PseudoType?, shadowRootType: ShadowRootType?, frameId: FrameId?, contentDocument: Node?, shadowRoots: List<Node>?, templateContent: Node?, pseudoElements: List<Node>?, importedDocument: Node?, distributedNodes: List<BackendNode>?, isSVG: Boolean?)
Content copied to clipboard
DOM interaction is implemented in terms of mirror objects that represent the actual DOM nodes. DOMNode is a base node mirror type.
Constructors
Node
Link copied to clipboard
fun Node(nodeId: NodeId, parentId: NodeId? = null, backendNodeId: BackendNodeId, nodeType: Int, nodeName: String, localName: String, nodeValue: String, childNodeCount: Int? = null, children: List<Node>? = null, attributes: List<String>? = null, documentURL: String? = null, baseURL: String? = null, publicId: String? = null, systemId: String? = null, internalSubset: String? = null, xmlVersion: String? = null, name: String? = null, value: String? = null, pseudoType: PseudoType? = null, shadowRootType: ShadowRootType? = null, frameId: FrameId? = null, contentDocument: Node? = null, shadowRoots: List<Node>? = null, templateContent: Node? = null, pseudoElements: List<Node>? = null, importedDocument: Node? = null, distributedNodes: List<BackendNode>? = null, isSVG: Boolean? = null)
Content copied to clipboard
Properties
attributes
Link copied to clipboard
backendNodeId
Link copied to clipboard
childNodeCount
Link copied to clipboard
contentDocument
Link copied to clipboard
distributedNodes
Link copied to clipboard
documentURL
Link copied to clipboard
importedDocument
Link copied to clipboard
internalSubset
Link copied to clipboard
pseudoElements
Link copied to clipboard
pseudoType
Link copied to clipboard
shadowRoots
Link copied to clipboard
shadowRootType
Link copied to clipboard
templateContent
Link copied to clipboard
xmlVersion
Link copied to clipboard
Sources
jvm source
Link copied to clipboard