class Arachni::Parser::Nodes::Element::WithAttributes::Attributes

Public Instance Methods

[]( name ) click to toggle source
Calls superclass method
# File lib/arachni/parser/nodes/element/with_attributes/attributes.rb, line 17
def []( name )
    super name.to_s.downcase
end
[]=( name, value ) click to toggle source
Calls superclass method
# File lib/arachni/parser/nodes/element/with_attributes/attributes.rb, line 21
def []=( name, value )
    super name.to_s.recode.downcase.freeze, value.recode.freeze
end