Lines Matching defs:child
788 var child = null;
797 child = index + 1 < children.length ? children[index + 1] : null;
800 child = children[index];
806 dropon.insertBefore(element, child);
848 var child = {
858 if (child.container)
859 this._tree(child.container, options, child);
861 parent.children.push (child);
946 // Returns true if child is contained within element
947 Element.isParent = function(child, element) {
948 if (!child.parentNode || child == element) return false;
949 if (child.parentNode == element) return true;
950 return Element.isParent(child.parentNode, element);