OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "base/strings/utf_string_conversions.h" | 5 #include "base/strings/utf_string_conversions.h" |
6 #include "base/time/time.h" | 6 #include "base/time/time.h" |
| 7 #include "build/build_config.h" |
7 #include "chrome/test/base/chrome_render_view_test.h" | 8 #include "chrome/test/base/chrome_render_view_test.h" |
8 #include "components/autofill/content/common/autofill_messages.h" | 9 #include "components/autofill/content/common/autofill_messages.h" |
9 #include "components/autofill/content/renderer/autofill_agent.h" | 10 #include "components/autofill/content/renderer/autofill_agent.h" |
10 #include "components/autofill/core/common/form_data.h" | 11 #include "components/autofill/core/common/form_data.h" |
11 #include "content/public/test/mock_render_thread.h" | 12 #include "content/public/test/mock_render_thread.h" |
12 #include "testing/gtest/include/gtest/gtest.h" | 13 #include "testing/gtest/include/gtest/gtest.h" |
13 #include "third_party/WebKit/public/web/WebDocument.h" | 14 #include "third_party/WebKit/public/web/WebDocument.h" |
14 #include "third_party/WebKit/public/web/WebElement.h" | 15 #include "third_party/WebKit/public/web/WebElement.h" |
15 #include "third_party/WebKit/public/web/WebFormElement.h" | 16 #include "third_party/WebKit/public/web/WebFormElement.h" |
16 #include "third_party/WebKit/public/web/WebInputElement.h" | 17 #include "third_party/WebKit/public/web/WebInputElement.h" |
(...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
504 | 505 |
505 // Submit the form. | 506 // Submit the form. |
506 ExecuteJavaScriptForTests("document.getElementById('myForm').submit();"); | 507 ExecuteJavaScriptForTests("document.getElementById('myForm').submit();"); |
507 ProcessPendingMessages(); | 508 ProcessPendingMessages(); |
508 | 509 |
509 VerifyReceivedRendererMessages(render_thread_.get(), "Rick", "Deckard", | 510 VerifyReceivedRendererMessages(render_thread_.get(), "Rick", "Deckard", |
510 true /* expect_submitted_message */); | 511 true /* expect_submitted_message */); |
511 } | 512 } |
512 | 513 |
513 } // namespace autofill | 514 } // namespace autofill |
OLD | NEW |