class HTML::Tag

def find(conditions)

description of the valid conditions in the +match+ method.)
matching node is returned. Otherwise, +nil+ is returned. (See the
If either the node or any of its children meet the given conditions, the
def find(conditions)
  match(conditions) && self || super
end