(list)
| 1928 | _updateLiveList(this); |
| 1929 | } |
| 1930 | function _updateLiveList(list){ |
| 1931 | var inc = list._node._inc || list._node.ownerDocument._inc; |
| 1932 | if(list._inc != inc){ |
| 1933 | var ls = list._refresh(list._node); |
| 1934 | __set__(list,'length',ls.length); |
| 1935 | copy(ls,list); |
| 1936 | list._inc = inc; |
| 1937 | } |
| 1938 | } |
| 1939 | LiveNodeList.prototype.item = function(i){ |
| 1940 | _updateLiveList(this); |
| 1941 | return this[i]; |
no test coverage detected