Merge pull request #71 from nathanchristenson/add-getElementsByClassName-to-Document

Trivial change - adding getElementsByClassName to Document
This commit is contained in:
Adam D. Ruppe 2015-10-23 10:59:46 -04:00
commit ae7a067ea1
1 changed files with 5 additions and 0 deletions

5
dom.d
View File

@ -4479,6 +4479,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)