On Mon, Jun 2, 2014 at 1:43 PM, Jon Robson <jdlrobson@gmail.com> wrote:
There is a consistent failure on 2 tests in the Chrome build. Firefox
build not effected.

Given(/^I am viewing the site in tablet mode$/) do
  @browser.window.resize_to(768, 1024)
end

Watching these run, and checking official specs, I'd like to see what happens if you specify the window as (1024, 768) instead of (768, 1024). If I understand the test correctly it shouldn't make a difference as far as testing function, but Chrome seems to be calculating area based on a limited visible space available on the vertical axis.
-Chris