Index: chrome/renderer/autofill/form_autofill_browsertest.cc |
diff --git a/chrome/renderer/autofill/form_autofill_browsertest.cc b/chrome/renderer/autofill/form_autofill_browsertest.cc |
index e12acc40d344f4c7924349fc30db9ac91a4e0dcd..419545d58668d7f6515f5c562b9e1d987d8b25ce 100644 |
--- a/chrome/renderer/autofill/form_autofill_browsertest.cc |
+++ b/chrome/renderer/autofill/form_autofill_browsertest.cc |
@@ -1201,8 +1201,8 @@ TEST_F(FormAutofillTest, PreviewForm) { |
// Fields with "display:none" should not previewed. |
{"text", "displaynone", "", "", false, "suggested displaynone", |
""}, |
- // Regular <input type="month"> should not be previewed. |
- {"month", "month", "", "", false, "2017-11", ""}, |
+ // Regular <input type="month"> should be previewed. |
+ {"month", "month", "", "", true, "2017-11", "2017-11"}, |
// Non-empty <input type="month"> should not be previewed. |
{"month", "month-nonempty", "2011-12", "", false, "2017-11", ""}, |
// Regular select fields preview is not yet supported |