Commit 8d7fc776 authored by Mike Dougherty's avatar Mike Dougherty Committed by Commit Bot

[iOS] Disable testFocusingOmniboxDismissesEditMenu for iOS 12 devices

LocationBarSteadyStateTestCase/testFocusingOmniboxDismissesEditMenu

Bug: 1129095
Change-Id: I7d9f7676530c3f657cc31e1be7e9b3937718297c
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2414566
Auto-Submit: Mike Dougherty <michaeldo@chromium.org>
Commit-Queue: Justin Cohen <justincohen@chromium.org>
Reviewed-by: default avatarJustin Cohen <justincohen@chromium.org>
Cr-Commit-Position: refs/heads/master@{#808010}
parent 781c2476
...@@ -305,6 +305,13 @@ id<GREYMatcher> SearchCopiedTextButton() { ...@@ -305,6 +305,13 @@ id<GREYMatcher> SearchCopiedTextButton() {
} }
- (void)testFocusingOmniboxDismissesEditMenu { - (void)testFocusingOmniboxDismissesEditMenu {
// TODO(crbug.com/1129095): Re-enable test for iOS 12 device.
#if !TARGET_IPHONE_SIMULATOR
if (!base::ios::IsRunningOnIOS13OrLater()) {
EARL_GREY_TEST_DISABLED(@"Fails on iOS 12 devices.");
}
#endif
[self openPage1]; [self openPage1];
// Long pressing should open edit menu. // Long pressing should open edit menu.
......
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