method
    
    ==
  ==(node)
  public
  
    Hide source    
    
      
  
# File actionpack/lib/action_controller/vendor/html-scanner/html/node.rb, line 507 def ==(node) return false unless super return false unless closing == node.closing && self.name == node.name attributes == node.attributes end

  
  
  