This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: getElementsbyTagName('*') in dom.minidom
Type: Stage:
Components: None Versions:
process
Status: closed Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: bugmenot
Priority: normal Keywords:

Created on 2005-03-02 16:55 by bugmenot, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (1)
msg24432 - (view) Author: bugmenot (bugmenot) Date: 2005-03-02 16:55
According to the level 1 DOM, getElementsByTagName('*')
on an element node should return all descendants of the
element from which the method is called that are
element nodes.

When i tried it however, the returned nodeList
contained all elements that appear after the original
element in the soruce, regardless of whether or not
they are descendants.

Python 2.4 for windows
History
Date User Action Args
2022-04-11 14:56:09adminsetgithub: 41641
2005-03-02 16:55:53bugmenotcreate