OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include <vector> | 5 #include <vector> |
6 | 6 |
7 #include "base/format_macros.h" | 7 #include "base/format_macros.h" |
8 #include "base/string16.h" | 8 #include "base/strings/string16.h" |
9 #include "base/string_util.h" | 9 #include "base/strings/string_util.h" |
10 #include "base/stringprintf.h" | 10 #include "base/strings/stringprintf.h" |
11 #include "base/strings/utf_string_conversions.h" | 11 #include "base/strings/utf_string_conversions.h" |
12 #include "chrome/test/base/chrome_render_view_test.h" | 12 #include "chrome/test/base/chrome_render_view_test.h" |
13 #include "components/autofill/common/form_data.h" | 13 #include "components/autofill/common/form_data.h" |
14 #include "components/autofill/common/web_element_descriptor.h" | 14 #include "components/autofill/common/web_element_descriptor.h" |
15 #include "components/autofill/content/renderer/form_autofill_util.h" | 15 #include "components/autofill/content/renderer/form_autofill_util.h" |
16 #include "components/autofill/content/renderer/form_cache.h" | 16 #include "components/autofill/content/renderer/form_cache.h" |
17 #include "testing/gtest/include/gtest/gtest.h" | 17 #include "testing/gtest/include/gtest/gtest.h" |
18 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" | 18 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" |
19 #include "third_party/WebKit/Source/WebKit/chromium/public/WebElement.h" | 19 #include "third_party/WebKit/Source/WebKit/chromium/public/WebElement.h" |
20 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFormControlElement
.h" | 20 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFormControlElement
.h" |
(...skipping 3076 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3097 EXPECT_FORM_FIELD_DATA_EQUALS(expected, fields[1]); | 3097 EXPECT_FORM_FIELD_DATA_EQUALS(expected, fields[1]); |
3098 | 3098 |
3099 expected.name = ASCIIToUTF16("country"); | 3099 expected.name = ASCIIToUTF16("country"); |
3100 expected.value = ASCIIToUTF16("AL"); | 3100 expected.value = ASCIIToUTF16("AL"); |
3101 expected.form_control_type = "select-one"; | 3101 expected.form_control_type = "select-one"; |
3102 expected.max_length = 0; | 3102 expected.max_length = 0; |
3103 EXPECT_FORM_FIELD_DATA_EQUALS(expected, fields[2]); | 3103 EXPECT_FORM_FIELD_DATA_EQUALS(expected, fields[2]); |
3104 } | 3104 } |
3105 | 3105 |
3106 } // namespace autofill | 3106 } // namespace autofill |
OLD | NEW |