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/string16.h" |
9 #include "base/string_util.h" | 9 #include "base/string_util.h" |
10 #include "base/stringprintf.h" | 10 #include "base/stringprintf.h" |
11 #include "base/utf_string_conversions.h" | 11 #include "base/utf_string_conversions.h" |
12 #include "chrome/common/autofill/web_element_descriptor.h" | 12 #include "chrome/common/autofill/web_element_descriptor.h" |
13 #include "chrome/common/form_data.h" | 13 #include "chrome/common/form_data.h" |
14 #include "chrome/renderer/autofill/form_autofill_util.h" | 14 #include "chrome/renderer/autofill/form_autofill_util.h" |
15 #include "chrome/renderer/autofill/form_cache.h" | 15 #include "chrome/renderer/autofill/form_cache.h" |
16 #include "chrome/test/base/chrome_render_view_test.h" | 16 #include "chrome/test/base/chrome_render_view_test.h" |
17 #include "testing/gtest/include/gtest/gtest.h" | 17 #include "testing/gtest/include/gtest/gtest.h" |
| 18 #include "third_party/WebKit/Source/Platform/chromium/public/WebString.h" |
| 19 #include "third_party/WebKit/Source/Platform/chromium/public/WebVector.h" |
18 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" | 20 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" |
19 #include "third_party/WebKit/Source/WebKit/chromium/public/WebElement.h" | 21 #include "third_party/WebKit/Source/WebKit/chromium/public/WebElement.h" |
20 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFormControlElement
.h" | 22 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFormControlElement
.h" |
21 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFormElement.h" | 23 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFormElement.h" |
22 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputElement.h" | 24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputElement.h" |
23 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNode.h" | 25 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNode.h" |
24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSelectElement.h" | 26 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSelectElement.h" |
25 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h" | |
26 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebVector.h" | |
27 #include "webkit/glue/web_io_operators.h" | 27 #include "webkit/glue/web_io_operators.h" |
28 | 28 |
29 using WebKit::WebDocument; | 29 using WebKit::WebDocument; |
30 using WebKit::WebElement; | 30 using WebKit::WebElement; |
31 using WebKit::WebFormControlElement; | 31 using WebKit::WebFormControlElement; |
32 using WebKit::WebFormElement; | 32 using WebKit::WebFormElement; |
33 using WebKit::WebFrame; | 33 using WebKit::WebFrame; |
34 using WebKit::WebInputElement; | 34 using WebKit::WebInputElement; |
35 using WebKit::WebSelectElement; | 35 using WebKit::WebSelectElement; |
36 using WebKit::WebNode; | 36 using WebKit::WebNode; |
(...skipping 2886 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2923 expected.form_control_type = "text"; | 2923 expected.form_control_type = "text"; |
2924 expected.max_length = WebInputElement::defaultMaxLength(); | 2924 expected.max_length = WebInputElement::defaultMaxLength(); |
2925 EXPECT_FORM_FIELD_DATA_EQUALS(expected, fields[1]); | 2925 EXPECT_FORM_FIELD_DATA_EQUALS(expected, fields[1]); |
2926 | 2926 |
2927 expected.name = ASCIIToUTF16("country"); | 2927 expected.name = ASCIIToUTF16("country"); |
2928 expected.value = ASCIIToUTF16("AL"); | 2928 expected.value = ASCIIToUTF16("AL"); |
2929 expected.form_control_type = "select-one"; | 2929 expected.form_control_type = "select-one"; |
2930 expected.max_length = 0; | 2930 expected.max_length = 0; |
2931 EXPECT_FORM_FIELD_DATA_EQUALS(expected, fields[2]); | 2931 EXPECT_FORM_FIELD_DATA_EQUALS(expected, fields[2]); |
2932 } | 2932 } |
OLD | NEW |