Class: Gammo::CSSSelector::AST::Selector::Pseudo::Checked

Inherits:
Gammo::CSSSelector::AST::Selector::Pseudo show all
Defined in:
lib/gammo/css_selector/ast/selector/pseudo_class.rb

Constant Summary

Constants included from Subclassify

Subclassify::NotFoundError

Instance Attribute Summary

Attributes inherited from Gammo::CSSSelector::AST::Selector::Pseudo

#value

Instance Method Summary collapse

Methods inherited from Gammo::CSSSelector::AST::Selector::Pseudo

#initialize

Constructor Details

This class inherits a constructor from Gammo::CSSSelector::AST::Selector::Pseudo

Instance Method Details

#match?(context) ⇒ Boolean

Returns:

  • (Boolean)


43
44
45
46
47
48
# File 'lib/gammo/css_selector/ast/selector/pseudo_class.rb', line 43

def match?(context)
  # Return true if attributes have the key but nil, or value is the
  # same with the key.
  (context.node.attributes.key?(:checked) && context.node.attributes[:checked].nil?) ||
    context.node.attributes[:checked] == 'checked'
end