Commit c8327b2e authored by Ian Struiksma's avatar Ian Struiksma Committed by Commit Bot

Disable Autofill PrefillFormAndFill on Mac.

Test PrefillFormAndFill fails often on Mac, disabling now so we can
enable the other Mac tests.

Bug: 1141208
Change-Id: Ia4f9a09ced6484f4941f5683b4ae499c009d7452
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2490849
Commit-Queue: Dominic Battré <battre@chromium.org>
Reviewed-by: default avatarDominic Battré <battre@chromium.org>
Auto-Submit: Ian Struiksma <ianstruiksma@google.com>
Cr-Commit-Position: refs/heads/master@{#819730}
parent 2e26056f
...@@ -912,7 +912,13 @@ IN_PROC_BROWSER_TEST_F(AutofillInteractiveTest, ModifySelectFieldAndFill) { ...@@ -912,7 +912,13 @@ IN_PROC_BROWSER_TEST_F(AutofillInteractiveTest, ModifySelectFieldAndFill) {
} }
// Test that autofill works when the website prefills the form. // Test that autofill works when the website prefills the form.
IN_PROC_BROWSER_TEST_F(AutofillInteractiveTest, PrefillFormAndFill) { // TODO(crbug.com/1141208): Disabled due to flakiness on MAC
#if defined(OS_MAC)
#define MAYBE_PrefillFormAndFill DISABLED_PrefillFormAndFill
#else
#define MAYBE_PrefillFormAndFill PrefillFormAndFill
#endif
IN_PROC_BROWSER_TEST_F(AutofillInteractiveTest, MAYBE_PrefillFormAndFill) {
const char kPrefillScript[] = const char kPrefillScript[] =
"<script>" "<script>"
"document.getElementById('firstname').value = 'Seb';" "document.getElementById('firstname').value = 'Seb';"
......
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