Returns all descendant elements with the given tag name. Returns the list of all descendant elements (not direct children only) with the specified tag name.
(self, name)
| 865 | return (namespaceURI, localName) in self._attrsNS |
| 866 | |
| 867 | def getElementsByTagName(self, name): |
| 868 | """Returns all descendant elements with the given tag name. |
| 869 | |
| 870 | Returns the list of all descendant elements (not direct children |
| 871 | only) with the specified tag name. |
| 872 | """ |
| 873 | return _get_elements_by_tagName_helper(self, name, NodeList()) |
| 874 | |
| 875 | def getElementsByTagNameNS(self, namespaceURI, localName): |
| 876 | return _get_elements_by_tagName_ns_helper( |