diff --git a/dom.d b/dom.d index 82aca0e..8c2ebb7 100644 --- a/dom.d +++ b/dom.d @@ -1344,6 +1344,8 @@ class Document : FileResource { ///. Element findFirst(bool delegate(Element) doesItMatch) { + if(root is null) + return null; Element result; bool goThroughElement(Element e) {