Merge branch 'master' of github.com:adamdruppe/misc-stuff-including-D-programming-language-web-stuff

This commit is contained in:
Adam D. Ruppe 2015-10-23 11:00:29 -04:00
commit bd4d0b4231
1 changed files with 5 additions and 0 deletions

5
dom.d
View File

@ -4477,6 +4477,11 @@ class Document : FileResource {
return root.getElementsByTagName(tag);
}
/// ditto
Element[] getElementsByClassName(string tag) {
return root.getElementsByClassName(tag);
}
/** FIXME: btw, this could just be a lazy range...... */
Element getFirstElementByTagName(string tag) {
if(loose)