| 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 "base/basictypes.h" | 5 #include "base/basictypes.h" |
| 6 | 6 |
| 7 #include "base/shared_memory.h" | 7 #include "base/shared_memory.h" |
| 8 #include "base/string_util.h" | 8 #include "base/string_util.h" |
| 9 #include "base/utf_string_conversions.h" | 9 #include "base/utf_string_conversions.h" |
| 10 #include "content/common/intents_messages.h" | 10 #include "content/common/intents_messages.h" |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 render_thread_->sink().ClearMessages(); | 290 render_thread_->sink().ClearMessages(); |
| 291 | 291 |
| 292 // Change the value of the input. We should have gotten an update state | 292 // Change the value of the input. We should have gotten an update state |
| 293 // notification. We need to spin the message loop to catch this update. | 293 // notification. We need to spin the message loop to catch this update. |
| 294 ExecuteJavaScript("document.getElementById('elt_text').value = 'foo';"); | 294 ExecuteJavaScript("document.getElementById('elt_text').value = 'foo';"); |
| 295 ProcessPendingMessages(); | 295 ProcessPendingMessages(); |
| 296 EXPECT_TRUE(render_thread_->sink().GetUniqueMessageMatching( | 296 EXPECT_TRUE(render_thread_->sink().GetUniqueMessageMatching( |
| 297 ViewHostMsg_UpdateState::ID)); | 297 ViewHostMsg_UpdateState::ID)); |
| 298 } | 298 } |
| 299 | 299 |
| 300 // Need to change the test for Cross-Site Process. |
| 300 TEST_F(RenderViewImplTest, OnNavigationHttpPost) { | 301 TEST_F(RenderViewImplTest, OnNavigationHttpPost) { |
| 301 ViewMsg_Navigate_Params nav_params; | 302 ViewMsg_Navigate_Params nav_params; |
| 302 | 303 |
| 303 // An http url will trigger a resource load so cannot be used here. | 304 // An http url will trigger a resource load so cannot be used here. |
| 304 nav_params.url = GURL("data:text/html,<div>Page</div>"); | 305 nav_params.url = GURL("data:text/html,<div>Page</div>"); |
| 305 nav_params.navigation_type = ViewMsg_Navigate_Type::NORMAL; | 306 nav_params.navigation_type = ViewMsg_Navigate_Type::NORMAL; |
| 306 nav_params.transition = PAGE_TRANSITION_TYPED; | 307 nav_params.transition = PAGE_TRANSITION_TYPED; |
| 307 nav_params.page_id = -1; | 308 nav_params.page_id = -1; |
| 308 nav_params.is_post = true; | 309 nav_params.is_post = true; |
| 309 | 310 |
| (...skipping 1474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1784 EXPECT_EQ(7, info.selectionEnd); | 1785 EXPECT_EQ(7, info.selectionEnd); |
| 1785 view()->OnSetEditableSelectionOffsets(4, 8); | 1786 view()->OnSetEditableSelectionOffsets(4, 8); |
| 1786 view()->OnExtendSelectionAndDelete(2, 5); | 1787 view()->OnExtendSelectionAndDelete(2, 5); |
| 1787 info = view()->webview()->textInputInfo(); | 1788 info = view()->webview()->textInputInfo(); |
| 1788 EXPECT_EQ("abuvwxyz", info.value); | 1789 EXPECT_EQ("abuvwxyz", info.value); |
| 1789 EXPECT_EQ(2, info.selectionStart); | 1790 EXPECT_EQ(2, info.selectionStart); |
| 1790 EXPECT_EQ(2, info.selectionEnd); | 1791 EXPECT_EQ(2, info.selectionEnd); |
| 1791 } | 1792 } |
| 1792 | 1793 |
| 1793 } // namespace content | 1794 } // namespace content |
| OLD | NEW |