class Nokogiri::XML::Node

def fragment tags

context node.
Create a DocumentFragment containing +tags+ that is relative to _this_
##
def fragment tags
  type = document.html? ? Nokogiri::HTML : Nokogiri::XML
  type::DocumentFragment.new(document, tags, self)
end