class Nokogiri::XML::Document

def tdiff(tree,&block)


Overrides `tdiff` to only compare the child nodes of the document.
def tdiff(tree,&block)
  return enum_for(:tdiff,tree) unless block
  tdiff_recursive(tree,&block)
  return self
end