Commit c0169442 authored by kkania@chromium.org's avatar kkania@chromium.org

Disable chromedriver testPopupsCanBeResized on windows.

BUG=141231
TEST=none
TRY=false


Review URL: https://chromiumcodereview.appspot.com/10854033

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150454 0039d316-1c4b-4281-b951-d872f2087c98
parent e35b93f6
...@@ -1158,6 +1158,8 @@ class ContentSettingsTest(ChromeDriverTest): ...@@ -1158,6 +1158,8 @@ class ContentSettingsTest(ChromeDriverTest):
driver.execute_script('window.open("about:blank")') driver.execute_script('window.open("about:blank")')
self.assertEquals(2, len(driver.window_handles)) self.assertEquals(2, len(driver.window_handles))
# Failing on win7: crbug.com/141231.
@SkipIf(util.IsWin())
def testPopupsCanBeResized(self): def testPopupsCanBeResized(self):
"""Regression test for chromedriver issue 126.""" """Regression test for chromedriver issue 126."""
driver = self.GetNewDriver() driver = self.GetNewDriver()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment