This method is deprecated or moved on the latest stable version.
The last existing version (v4.1.8) is shown here.
find(conditions)
public
If either the node or any of its children meet the given conditions, the
matching node is returned. Otherwise, nil is returned. (See the
description of the valid conditions in the match method.)
# File actionview/lib/action_view/vendor/html-scanner/html/node.rb, line 333
def find(conditions)
match(conditions) && self || super
end