Commit 410808eb authored by Francois Doray's avatar Francois Doray Committed by Commit Bot

[sheriff] Disable AutofillInteractiveTest.PrefillFormAndFill on Mac.

TBR=dvadym@chromium.org
R=dvadym@chromium.org

Bug: 1045545
Change-Id: Iaa0b63e95748d488dc97b07087c4852e981b5d0b
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2019886Reviewed-by: default avatarFrançois Doray <fdoray@chromium.org>
Commit-Queue: François Doray <fdoray@chromium.org>
Cr-Commit-Position: refs/heads/master@{#735069}
parent 985129b4
...@@ -895,7 +895,13 @@ IN_PROC_BROWSER_TEST_F(AutofillInteractiveTest, ModifySelectFieldAndFill) { ...@@ -895,7 +895,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) { #if defined(OS_MACOSX)
// Flaky on Mac https://crbug.com/1045545
#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