Uses of Class
org.htmlunit.javascript.host.dom.NodeList
-
Packages that use NodeList Package Description org.htmlunit.javascript.host Implementations of the various JavaScript host objects - users of HtmlUnit shouldn't need anything in this package.org.htmlunit.javascript.host.dom Implementations of the DOM JavaScript host objects - users of HtmlUnit shouldn't need anything in this package.org.htmlunit.javascript.host.html Implementations of the HTML JavaScript host objects - users of HtmlUnit shouldn't need anything in this package. -
-
Uses of NodeList in org.htmlunit.javascript.host
Methods in org.htmlunit.javascript.host that return NodeList Modifier and Type Method Description NodeList
Element. querySelectorAll(java.lang.String selectors)
Retrieves all element nodes from descendants of the starting element node that match any selector within the supplied selector strings. -
Uses of NodeList in org.htmlunit.javascript.host.dom
Subclasses of NodeList in org.htmlunit.javascript.host.dom Modifier and Type Class Description class
RadioNodeList
A JavaScript object forRadioNodeList
.Fields in org.htmlunit.javascript.host.dom declared as NodeList Modifier and Type Field Description private NodeList
MutationRecord. addedNodes_
private NodeList
Node. childNodes_
"Live" child nodes collection; has to be a member to have equality (==) working.private NodeList
MutationRecord. removedNodes_
Methods in org.htmlunit.javascript.host.dom that return NodeList Modifier and Type Method Description NodeList
MutationRecord. getAddedNodes()
NodeList
Node. getChildNodes()
Returns the child nodes of the current element.NodeList
Document. getElementsByName(java.lang.String elementName)
Returns all HTML elements that have aname
attribute with the specified value.NodeList
MutationRecord. getRemovedNodes()
NodeList
Document. querySelectorAll(java.lang.String selectors)
Retrieves all element nodes from descendants of the starting element node that match any selector within the supplied selector strings.NodeList
DocumentFragment. querySelectorAll(java.lang.String selectors)
Retrieves all element nodes from descendants of the starting element node that match any selector within the supplied selector strings.static NodeList
NodeList. staticNodeList(HtmlUnitScriptable parentScope, java.util.List<DomNode> elements)
Gets a static NodeList.Methods in org.htmlunit.javascript.host.dom with parameters of type NodeList Modifier and Type Method Description (package private) void
MutationRecord. setAddedNodes(NodeList addedNodes)
Sets theaddedNodes
property.(package private) void
MutationRecord. setRemovedNodes(NodeList removedNodes)
Sets theremovedNodes
property. -
Uses of NodeList in org.htmlunit.javascript.host.html
Subclasses of NodeList in org.htmlunit.javascript.host.html Modifier and Type Class Description (package private) class
LabelsNodeList
A specialNodeList
to implement.labels
property.Fields in org.htmlunit.javascript.host.html declared as NodeList Modifier and Type Field Description private NodeList
HTMLButtonElement. labels_
"Live" labels collection; has to be a member to have equality (==) working.private NodeList
HTMLInputElement. labels_
"Live" labels collection; has to be a member to have equality (==) working.private NodeList
HTMLMeterElement. labels_
"Live" labels collection; has to be a member to have equality (==) working.private NodeList
HTMLOutputElement. labels_
"Live" labels collection; has to be a member to have equality (==) working.private NodeList
HTMLProgressElement. labels_
"Live" labels collection; has to be a member to have equality (==) working.private NodeList
HTMLSelectElement. labels_
"Live" labels collection; has to be a member to have equality (==) working.private NodeList
HTMLTextAreaElement. labels_
"Live" labels collection; has to be a member to have equality (==) working.Methods in org.htmlunit.javascript.host.html that return NodeList Modifier and Type Method Description NodeList
HTMLDocument. getElementsByName(java.lang.String elementName)
Returns all HTML elements that have aname
attribute with the specified value.NodeList
HTMLButtonElement. getLabels()
Returns the labels associated with the element.NodeList
HTMLInputElement. getLabels()
Returns the labels associated with the element.NodeList
HTMLMeterElement. getLabels()
Returns the labels associated with the element.NodeList
HTMLOutputElement. getLabels()
Returns the labels associated with the element.NodeList
HTMLProgressElement. getLabels()
Returns the labels associated with the element.NodeList
HTMLSelectElement. getLabels()
Returns the labels associated with the element.NodeList
HTMLTextAreaElement. getLabels()
Returns the labels associated with the element.
-