Home | History | Annotate | Download | only in front_end

Lines Matching refs:childElement

143         var childElement = parent.firstChild;
144 while (childElement) {
145 if (childElement._section)
146 return childElement._section;
147 childElement = childElement.nextSibling;
159 var childElement = parent.lastChild;
160 while (childElement) {
161 if (childElement._section)
162 return childElement._section;
163 childElement = childElement.previousSibling;