Skip to content

Commit

Permalink
Fixed again, previous checkin was to the wrong node.rb class. chromed…
Browse files Browse the repository at this point in the history
…river + Chrome 12 YELLS tag names in UPPERCASE
  • Loading branch information
Kevin Fitzpatrick & Matthew DuVall committed May 17, 2011
1 parent 5529be2 commit 2d2f877
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/capybara/rack_test/node.rb
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def click
end

def tag_name
native.node_name.downcase
native.node_name
end

def visible?
Expand Down
2 changes: 1 addition & 1 deletion lib/capybara/selenium/node.rb
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def drag_to(element)
end

def tag_name
native.tag_name
native.tag_name.downcase
end

def visible?
Expand Down

0 comments on commit 2d2f877

Please sign in to comment.