[ChromeDriver] Change the windows heights in Selenium tests

These JAR files are built from Selenium tests sources and for some
particular tests the windows heights have been changed to conform
the minimum heights required on Mac in CL https://crrev.com/624785

Bug:chromedriver:2748
Change-Id: Ia2323ed7451198a63eb3fca1ce82fb514ab6bb00
diff --git a/jar/tests-selenium.jar b/jar/tests-selenium.jar
index 6ad1395..accdf46 100644
--- a/jar/tests-selenium.jar
+++ b/jar/tests-selenium.jar
Binary files differ
diff --git a/seleniumHQ.patch b/seleniumHQ.patch
index 8766621..d6643d2 100644
--- a/seleniumHQ.patch
+++ b/seleniumHQ.patch
@@ -49,6 +49,64 @@
    /**
     * @param arguments The arguments to use when starting Chrome.
     * @see #addArguments(java.util.List)
+diff --git a/java/client/test/org/openqa/selenium/WindowTest.java b/java/client/test/org/openqa/selenium/WindowTest.java
+index 5021b79e8b..36b3da7eac 100644
+--- a/java/client/test/org/openqa/selenium/WindowTest.java
++++ b/java/client/test/org/openqa/selenium/WindowTest.java
+@@ -119,7 +119,7 @@ public void testCanMaximizeTheWindow() {
+     // though others aren't defined in org.openqa.selenium.Platform).
+     assumeFalse(TestUtilities.getEffectivePlatform(driver).is(ANDROID));
+ 
+-    changeSizeTo(new Dimension(640, 273));
++    changeSizeTo(new Dimension(640, 323));
+     enlargeBy(WebDriver.Window::maximize);
+   }
+ 
+@@ -132,7 +132,7 @@ public void testCanMaximizeTheWindowFromFrame() {
+     assumeFalse(TestUtilities.getEffectivePlatform(driver).is(ANDROID));
+ 
+     driver.get(pages.framesetPage);
+-    changeSizeTo(new Dimension(640, 274));
++    changeSizeTo(new Dimension(640, 324));
+ 
+     driver.switchTo().frame("fourth");
+     enlargeBy(WebDriver.Window::maximize);
+@@ -147,7 +147,7 @@ public void testCanMaximizeTheWindowFromIframe() {
+     assumeFalse(TestUtilities.getEffectivePlatform(driver).is(ANDROID));
+ 
+     driver.get(pages.iframePage);
+-    changeSizeTo(new Dimension(640, 275));
++    changeSizeTo(new Dimension(640, 325));
+ 
+     driver.switchTo().frame("iframe1-name");
+     enlargeBy(WebDriver.Window::maximize);
+@@ -161,7 +161,7 @@ public void canFullscreenTheWindow() {
+     // though others aren't defined in org.openqa.selenium.Platform).
+     assumeFalse(TestUtilities.getEffectivePlatform(driver).is(ANDROID));
+ 
+-    changeSizeTo(new Dimension(640, 273));
++    changeSizeTo(new Dimension(640, 323));
+     enlargeBy(WebDriver.Window::fullscreen);
+   }
+ 
+@@ -175,7 +175,7 @@ public void canFullscreenTheWindowFromFrame() {
+     assumeFalse(TestUtilities.getEffectivePlatform(driver).is(ANDROID));
+ 
+     driver.get(pages.framesetPage);
+-    changeSizeTo(new Dimension(640, 274));
++    changeSizeTo(new Dimension(640, 324));
+ 
+     driver.switchTo().frame("fourth");
+     enlargeBy(WebDriver.Window::fullscreen);
+@@ -191,7 +191,7 @@ public void canFullscreenTheWindowFromIframe() {
+     assumeFalse(TestUtilities.getEffectivePlatform(driver).is(ANDROID));
+ 
+     driver.get(pages.iframePage);
+-    changeSizeTo(new Dimension(640, 275));
++    changeSizeTo(new Dimension(640, 325));
+ 
+     driver.switchTo().frame("iframe1-name");
+     enlargeBy(WebDriver.Window::fullscreen);
 diff --git a/java/client/test/org/openqa/selenium/chrome/ChromeOptionsFunctionalTest.java b/java/client/test/org/openqa/selenium/chrome/ChromeOptionsFunctionalTest.java
 index 934e5723c1..6b23bf7e44 100644
 --- a/java/client/test/org/openqa/selenium/chrome/ChromeOptionsFunctionalTest.java