Home | History | Annotate | Download | only in NodeList

Lines Matching full:found

27                 var found = containsElementWithId(document.body, elementId);
40 return testName + ": " + (found ? "found" : "not found");
43 var found = false;
46 found = true;
49 for (var i=0; !found && i < children.length; i++)
50 found = containsElementWithId(children[i], id);
53 return found;
60 <p>If the test passes, you should see &quot;before: not found&quot;, &quot;after: found&quot; and &quot;onload: found&quot;.</p>
61 <p>If the cache is not invalidated when the testElement is parsed, both before and after will be &quot;not found&quot;, which is a failure.</p>