# File lib/html5/treebuilders/rexml.rb, line 69
        def cloneNode
          newNode = self.class.new name
          attributes.each {|name,value| newNode.attributes[name] = value}
          newNode
        end