support all elements

This commit is contained in:
Adam D. Ruppe 2024-10-24 18:01:27 -04:00
parent 9a989762e6
commit ae07910adb
1 changed files with 1 additions and 1 deletions

2
dom.d
View File

@ -2866,7 +2866,7 @@ class Element : DomParent {
tag = tag.toLower();
Element[] ret;
foreach(e; tree)
if(e.tagName == tag)
if(e.tagName == tag || tag == "*")
ret ~= e;
return ret;
}