| Index: chrome/browser/autofill/autofill_interactive_uitest.cc
|
| diff --git a/chrome/browser/autofill/autofill_interactive_uitest.cc b/chrome/browser/autofill/autofill_interactive_uitest.cc
|
| index fb6b0d3d3bdad52e3a0b3393817d748da81790c4..045f69244e0b00706883891d7e9f1e68c61206ac 100644
|
| --- a/chrome/browser/autofill/autofill_interactive_uitest.cc
|
| +++ b/chrome/browser/autofill/autofill_interactive_uitest.cc
|
| @@ -1023,9 +1023,17 @@ IN_PROC_BROWSER_TEST_F(AutofillInteractiveTest,
|
| ExpectFieldValue("state_freeform", std::string());
|
| }
|
|
|
| +// TODO(crbug.com/603488) Test is timing out flakily on CrOS.
|
| +#if defined(OS_CHROMEOS)
|
| +#define MAYBE_AutofillFormWithNonAutofillableField \
|
| + DISABLED_AutofillFormWithNonAutofillableField
|
| +#else
|
| +#define MAYBE_AutofillFormWithNonAutofillableField \
|
| + AutofillFormWithNonAutofillableField
|
| +#endif
|
| // Test that we properly autofill forms with non-autofillable fields.
|
| IN_PROC_BROWSER_TEST_F(AutofillInteractiveTest,
|
| - AutofillFormWithNonAutofillableField) {
|
| + MAYBE_AutofillFormWithNonAutofillableField) {
|
| CreateTestProfile();
|
|
|
| // Load the test page.
|
|
|