Method: Fdlint::Parser::HTML::Element#==

Defined in:
lib/fdlint/parser/html/struct.rb

#==(other) ⇒ Object



107
108
109
# File 'lib/fdlint/parser/html/struct.rb', line 107

def ==(other)
  other.is_a?(Element) and tag_name == tag_name.to_s && prop_text == other.prop_text && inner_html == other.inner_html
end