I'm currently working on fixing up some specs, and have found a piece of syntax that nobody seems to know what represents.
In the Capybara Suite there are multiple occurrences of:
within(:css, '#foo') do
By removing the :css
I have found this to be functionally identical to within('#foo') do
Is there a difference? What other symbols can be passed in as a first parameter to within?