Uses of Class
org.htmlunit.javascript.host.dom.NodeList
Packages that use NodeList
Package
Description
Implementations of the various JavaScript host objects - users of HtmlUnit shouldn't
need anything in this package.
Implementations of the DOM JavaScript host objects - users of HtmlUnit shouldn't
need anything in this package.
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 NodeListModifier and TypeMethodDescriptionElement.querySelectorAll
(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.domFields in org.htmlunit.javascript.host.dom declared as NodeListModifier and TypeFieldDescriptionprivate 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 NodeListModifier and TypeMethodDescriptionMutationRecord.getAddedNodes()
Node.getChildNodes()
Returns the child nodes of the current element.Document.getElementsByName
(String elementName) Returns all HTML elements that have aname
attribute with the specified value.MutationRecord.getRemovedNodes()
Document.querySelectorAll
(String selectors) Retrieves all element nodes from descendants of the starting element node that match any selector within the supplied selector strings.DocumentFragment.querySelectorAll
(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, List<DomNode> elements) Gets a static NodeList.Methods in org.htmlunit.javascript.host.dom with parameters of type NodeListModifier and TypeMethodDescription(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.htmlModifier and TypeClassDescription(package private) class
A specialNodeList
to implement.labels
property.Fields in org.htmlunit.javascript.host.html declared as NodeListModifier and TypeFieldDescriptionprivate 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 NodeListModifier and TypeMethodDescriptionHTMLDocument.getElementsByName
(String elementName) Returns all HTML elements that have aname
attribute with the specified value.HTMLButtonElement.getLabels()
Returns the labels associated with the element.HTMLInputElement.getLabels()
Returns the labels associated with the element.HTMLMeterElement.getLabels()
Returns the labels associated with the element.HTMLOutputElement.getLabels()
Returns the labels associated with the element.HTMLProgressElement.getLabels()
Returns the labels associated with the element.HTMLSelectElement.getLabels()
Returns the labels associated with the element.HTMLTextAreaElement.getLabels()
Returns the labels associated with the element.