_init_.prototype.children = function() { var kids = []; for (var i = 0; i < this.s.length; i++) { for (var c = this.s[i].firstChild; c != null; c = c.nextSibling) if (c.nodeType === 1) kids.push(c); }; return _A_(kids); }