Index: chrome/test/webdriver/test/chromedriver_tests.py |
diff --git a/chrome/test/webdriver/test/chromedriver_tests.py b/chrome/test/webdriver/test/chromedriver_tests.py |
index 4d013b3445ddeece53a1a7f8876d77156a17487a..5b1ae0c049e1ccb5b34522678f8dd8f4e588d65c 100644 |
--- a/chrome/test/webdriver/test/chromedriver_tests.py |
+++ b/chrome/test/webdriver/test/chromedriver_tests.py |
@@ -498,12 +498,14 @@ class MouseTest(ChromeDriverTest): |
self._driver.find_element_by_tag_name('a').click() |
self.assertTrue(self._driver.execute_script('return window.success')) |
- def testClickElementThatNeedsContainerScrolling(self): |
+ # crbug.com/136875 |
+ def DISABLED_testClickElementThatNeedsContainerScrolling(self): |
self._driver.get(self.GetTestDataUrl() + '/test_page.html') |
self._driver.find_element_by_name('hidden_scroll').click() |
self.assertTrue(self._driver.execute_script('return window.success')) |
- def testClickElementThatNeedsIframeScrolling(self): |
+ # crbug.com/136875 |
+ def DISABLED_testClickElementThatNeedsIframeScrolling(self): |
self._driver.get(self.GetTestDataUrl() + '/test_page.html') |
self._driver.switch_to_frame('iframe') |
self._driver.find_element_by_name('hidden_scroll').click() |