1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/browser/web_contents/web_contents_view_aura.h"
#include <stddef.h>
#include <optional>
#include <tuple>
#include <utility>
#include "base/command_line.h"
#include "base/functional/bind.h"
#include "base/location.h"
#include "base/memory/ptr_util.h"
#include "base/memory/raw_ptr.h"
#include "base/run_loop.h"
#include "base/strings/utf_string_conversions.h"
#include "base/task/single_thread_task_runner.h"
#include "base/test/test_timeouts.h"
#include "base/values.h"
#include "build/build_config.h"
#include "content/browser/renderer_host/navigation_controller_impl.h"
#include "content/browser/renderer_host/navigation_entry_impl.h"
#include "content/browser/renderer_host/overscroll_controller.h"
#include "content/browser/renderer_host/render_widget_host_view_aura.h"
#include "content/browser/web_contents/web_contents_impl.h"
#include "content/browser/web_contents/web_contents_view.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/overscroll_configuration.h"
#include "content/public/browser/render_frame_host.h"
#include "content/public/browser/render_widget_host.h"
#include "content/public/browser/web_contents_observer.h"
#include "content/public/browser/web_contents_view_delegate.h"
#include "content/public/browser/web_drag_dest_delegate.h"
#include "content/public/common/content_switches.h"
#include "content/public/test/browser_test.h"
#include "content/public/test/browser_test_utils.h"
#include "content/public/test/content_browser_test.h"
#include "content/public/test/content_browser_test_utils.h"
#include "content/public/test/test_renderer_host.h"
#include "content/public/test/test_utils.h"
#include "content/shell/browser/shell.h"
#include "net/dns/mock_host_resolver.h"
#include "net/test/embedded_test_server/embedded_test_server.h"
#include "third_party/blink/public/common/input/synthetic_web_input_event_builders.h"
#include "ui/aura/window.h"
#include "ui/aura/window_tree_host.h"
#include "ui/base/dragdrop/drag_drop_types.h"
#include "ui/base/dragdrop/drop_target_event.h"
#include "ui/base/dragdrop/mojom/drag_drop_types.mojom.h"
#include "ui/base/dragdrop/os_exchange_data.h"
#include "ui/compositor/scoped_animation_duration_scale_mode.h"
#include "ui/events/base_event_utils.h"
#include "ui/events/event_sink.h"
#include "ui/events/event_utils.h"
#include "ui/events/test/event_generator.h"
namespace content {
namespace {
// TODO(tdresser): Find a way to avoid sleeping like this. See crbug.com/405282
// for details.
void GiveItSomeTime() {
base::RunLoop run_loop;
base::SingleThreadTaskRunner::GetCurrentDefault()->PostDelayedTask(
FROM_HERE, run_loop.QuitClosure(), base::Milliseconds(10));
run_loop.Run();
}
// A test delegate used in drag and drop tests to simulate either good or bad
// deep scans of data.
class TestWebContentsViewDelegate : public WebContentsViewDelegate {
public:
explicit TestWebContentsViewDelegate(bool allow_drop)
: allow_drop_(allow_drop) {}
void OnPerformingDrop(const DropData& drop_data,
DropCompletionCallback callback) override {
if (allow_drop_) {
drop_callback_ = base::BindOnce(std::move(callback), drop_data);
} else {
drop_callback_ = base::BindOnce(std::move(callback), std::nullopt);
}
renderer_told_to_force_default_action_ =
!drop_data.document_is_handling_drag;
}
void FinishOnPerformingDrop() {
if (drop_callback_) {
std::move(drop_callback_).Run();
}
}
void DelayedFinishOnPerformingDrop() {
ASSERT_TRUE(drop_callback_);
base::SingleThreadTaskRunner::GetCurrentDefault()->PostDelayedTask(
FROM_HERE, std::move(drop_callback_), TestTimeouts::tiny_timeout());
}
bool IsRendererToldToForceDefaultAction() {
return renderer_told_to_force_default_action_;
}
private:
bool allow_drop_;
bool renderer_told_to_force_default_action_ = false;
base::OnceClosure drop_callback_;
};
} // namespace
class WebContentsViewAuraTest : public ContentBrowserTest {
public:
WebContentsViewAuraTest() = default;
WebContentsViewAuraTest(const WebContentsViewAuraTest&) = delete;
WebContentsViewAuraTest& operator=(const WebContentsViewAuraTest&) = delete;
// Starts the test server and navigates to the given url. Sets a large enough
// size to the root window. Returns after the navigation to the url is
// complete.
void StartTestWithPage(const std::string& url) {
ASSERT_TRUE(embedded_test_server()->Start());
GURL test_url;
if (url == "about:blank") {
test_url = GURL(url);
} else {
test_url = GURL(embedded_test_server()->GetURL(url));
}
EXPECT_TRUE(NavigateToURL(shell(), test_url));
frame_observer_ = std::make_unique<RenderFrameSubmissionObserver>(
shell()->web_contents());
}
void SetUpOnMainThread() override {
// Setup the server to allow serving separate sites, so we can perform
// cross-process navigation.
host_resolver()->AddRule("*", "127.0.0.1");
}
void SetUpCommandLine(base::CommandLine* cmd) override {
cmd->AppendSwitchASCII(switches::kTouchEventFeatureDetection,
switches::kTouchEventFeatureDetectionEnabled);
}
WebContentsImpl* GetWebContentsImpl() {
return static_cast<WebContentsImpl*>(shell()->web_contents());
}
WebContentsViewAura* GetWebContentsViewAura() {
WebContentsImpl* contents = GetWebContentsImpl();
return static_cast<WebContentsViewAura*>(contents->GetView());
}
TestWebContentsViewDelegate* PrepareWebContentsViewForDropTest(
bool delegate_allows_drop) {
WebContentsViewAura* view = GetWebContentsViewAura();
drag_dest_delegate_.Reset();
view->SetDragDestDelegateForTesting(&drag_dest_delegate_);
view->drag_in_progress_ = true;
auto delegate = std::make_unique<TestWebContentsViewDelegate>(
/*allow_drop=*/delegate_allows_drop);
TestWebContentsViewDelegate* delegate_ptr = delegate.get();
view->SetDelegateForTesting(std::move(delegate));
view->RegisterDropCallbackForTesting(base::BindOnce(
&WebContentsViewAuraTest::OnDropComplete, base::Unretained(this)));
return delegate_ptr;
}
void SimulateDragEnterAndDrop(bool document_is_handling_drag) {
WebContentsViewAura* view = GetWebContentsViewAura();
std::unique_ptr<ui::OSExchangeData> data =
std::make_unique<ui::OSExchangeData>();
gfx::PointF point = {10, 10};
ui::DropTargetEvent event(*data.get(), point, point,
ui::DragDropTypes::DRAG_COPY);
view->OnDragEntered(event);
view->UpdateDragOperation(ui::mojom::DragOperation::kCopy,
document_is_handling_drag);
EXPECT_TRUE(drag_dest_delegate_.GetDragInitializeCalled());
auto drop_cb = view->GetDropCallback(event);
ASSERT_TRUE(drop_cb);
ui::mojom::DragOperation output_drag_op = ui::mojom::DragOperation::kNone;
std::move(drop_cb).Run(std::move(data), output_drag_op,
/*drag_image_layer_owner=*/nullptr);
}
void OnDropComplete(RenderWidgetHostImpl* target_rwh,
const DropData& drop_data,
const gfx::PointF& client_pt,
const gfx::PointF& screen_pt,
int key_modifiers,
bool drop_allowed) {
// Cache the data for verification.
drop_target_widget_ = target_rwh;
std::move(async_drop_closure_).Run();
}
void EndDrag() {
ASSERT_FALSE(async_drop_closure_);
ASSERT_TRUE(async_end_drag_closure_);
std::move(async_end_drag_closure_).Run();
}
void TestOverscrollNavigation(bool touch_handler) {
ASSERT_NO_FATAL_FAILURE(StartTestWithPage("/overscroll_navigation.html"));
WebContentsImpl* web_contents = GetWebContentsImpl();
NavigationController& controller = web_contents->GetController();
RenderFrameHost* main_frame = web_contents->GetPrimaryMainFrame();
EXPECT_FALSE(controller.CanGoBack());
EXPECT_FALSE(controller.CanGoForward());
EXPECT_EQ(0, EvalJs(main_frame, "get_current()"));
if (touch_handler) {
ASSERT_TRUE(content::ExecJs(main_frame, "install_touch_handler()"));
}
ASSERT_TRUE(content::ExecJs(main_frame, "navigate_next()"));
ASSERT_TRUE(content::ExecJs(main_frame, "navigate_next()"));
EXPECT_EQ(2, EvalJs(main_frame, "get_current()"));
EXPECT_TRUE(controller.CanGoBack());
EXPECT_FALSE(controller.CanGoForward());
aura::Window* content = web_contents->GetContentNativeView();
gfx::Rect bounds = content->GetBoundsInRootWindow();
ui::test::EventGenerator generator(content->GetRootWindow(), content);
const int kScrollDurationMs = 20;
const int kScrollSteps = 10;
{
// Do a swipe-right now. That should navigate backwards.
std::u16string expected_title = u"Title: #1";
content::TitleWatcher title_watcher(web_contents, expected_title);
generator.GestureScrollSequence(
gfx::Point(bounds.x() + 2, bounds.y() + 10),
gfx::Point(bounds.right() - 10, bounds.y() + 10),
base::Milliseconds(kScrollDurationMs), kScrollSteps);
std::u16string actual_title = title_watcher.WaitAndGetTitle();
EXPECT_EQ(expected_title, actual_title);
EXPECT_EQ(1, EvalJs(main_frame, "get_current()"));
EXPECT_TRUE(controller.CanGoBack());
EXPECT_TRUE(controller.CanGoForward());
}
{
// Do a fling-right now. That should navigate backwards.
std::u16string expected_title = u"Title:";
content::TitleWatcher title_watcher(web_contents, expected_title);
generator.GestureScrollSequence(
gfx::Point(bounds.x() + 2, bounds.y() + 10),
gfx::Point(bounds.right() - 10, bounds.y() + 10),
base::Milliseconds(kScrollDurationMs), kScrollSteps);
std::u16string actual_title = title_watcher.WaitAndGetTitle();
EXPECT_EQ(expected_title, actual_title);
EXPECT_EQ(0, EvalJs(main_frame, "get_current()"));
EXPECT_FALSE(controller.CanGoBack());
EXPECT_TRUE(controller.CanGoForward());
}
{
// Do a swipe-left now. That should navigate forward.
std::u16string expected_title = u"Title: #1";
content::TitleWatcher title_watcher(web_contents, expected_title);
generator.GestureScrollSequence(
gfx::Point(bounds.right() - 10, bounds.y() + 10),
gfx::Point(bounds.x() + 2, bounds.y() + 10),
base::Milliseconds(kScrollDurationMs), kScrollSteps);
std::u16string actual_title = title_watcher.WaitAndGetTitle();
EXPECT_EQ(expected_title, actual_title);
EXPECT_EQ(1, EvalJs(main_frame, "get_current()"));
EXPECT_TRUE(controller.CanGoBack());
EXPECT_TRUE(controller.CanGoForward());
}
}
int GetCurrentIndex() {
WebContentsImpl* web_contents = GetWebContentsImpl();
RenderFrameHost* main_frame = web_contents->GetPrimaryMainFrame();
return EvalJs(main_frame, "get_current()").ExtractInt();
}
RenderViewHost* GetRenderViewHost() const {
RenderViewHost* const rvh =
shell()->web_contents()->GetPrimaryMainFrame()->GetRenderViewHost();
CHECK(rvh);
return rvh;
}
RenderWidgetHostImpl* GetRenderWidgetHost() const {
RenderWidgetHostImpl* const rwh =
RenderWidgetHostImpl::From(shell()
->web_contents()
->GetRenderWidgetHostView()
->GetRenderWidgetHost());
CHECK(rwh);
return rwh;
}
RenderWidgetHostViewBase* GetRenderWidgetHostView() const {
return static_cast<RenderWidgetHostViewBase*>(
GetRenderViewHost()->GetWidget()->GetView());
}
void WaitAFrame() {
while (!GetRenderWidgetHost()->RequestRepaintOnNewSurface()) {
GiveItSomeTime();
}
frame_observer_->WaitForAnyFrameSubmission();
}
void StopObserveringFrames() { frame_observer_.reset(); }
protected:
class MockWebDragDestDelegate : public WebDragDestDelegate {
public:
void DragInitialize(WebContents* contents) override {
drag_initialize_called_ = true;
}
void OnDragOver() override {}
void OnDragEnter() override {}
void OnDrop() override { ++on_drop_called_count_; }
void OnDragLeave() override { on_drag_leave_called_ = true; }
void OnReceiveDragData(const ui::OSExchangeData& data) override {}
void Reset() { drag_initialize_called_ = false; }
bool GetDragInitializeCalled() { return drag_initialize_called_; }
int GetOnDropCalledCount() { return on_drop_called_count_; }
bool GetOnDragLeaveCalled() { return on_drag_leave_called_; }
private:
bool drag_initialize_called_ = false;
int on_drop_called_count_ = 0;
bool on_drag_leave_called_ = false;
};
// ContentBrowserTest:
void PostRunTestOnMainThread() override {
// Delete this before the WebContents is destroyed.
StopObserveringFrames();
ContentBrowserTest::PostRunTestOnMainThread();
}
raw_ptr<RenderWidgetHostImpl, DanglingUntriaged> drop_target_widget_;
// A closure indicating that async drop operation has completed.
base::OnceClosure async_drop_closure_;
base::OnceClosure async_end_drag_closure_;
MockWebDragDestDelegate drag_dest_delegate_;
private:
std::unique_ptr<RenderFrameSubmissionObserver> frame_observer_;
};
// Flaky on Windows: http://crbug.com/305722
// The test frequently times out on Linux, too. See crbug.com/440043.
// For Fuchsia, see https://crbug.com/1318245.
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || \
BUILDFLAG(IS_FUCHSIA)
#define MAYBE_OverscrollNavigation DISABLED_OverscrollNavigation
#else
#define MAYBE_OverscrollNavigation OverscrollNavigation
#endif
IN_PROC_BROWSER_TEST_F(WebContentsViewAuraTest, MAYBE_OverscrollNavigation) {
TestOverscrollNavigation(false);
}
// Flaky on Windows (might be related to the above test):
// http://crbug.com/305722
// On Linux, the test frequently times out. (See crbug.com/440043).
// For Fuchsia, see https://crbug.com/1318245.
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || \
BUILDFLAG(IS_FUCHSIA)
#define MAYBE_OverscrollNavigationWithTouchHandler \
DISABLED_OverscrollNavigationWithTouchHandler
#else
#define MAYBE_OverscrollNavigationWithTouchHandler \
OverscrollNavigationWithTouchHandler
#endif
IN_PROC_BROWSER_TEST_F(WebContentsViewAuraTest,
MAYBE_OverscrollNavigationWithTouchHandler) {
TestOverscrollNavigation(true);
}
namespace {
// This fails the test if it sees any mouse move events.
class SpuriousMouseMoveEventObserver
: public RenderWidgetHost::InputEventObserver {
public:
explicit SpuriousMouseMoveEventObserver(RenderWidgetHost* host)
: host_(host) {
host_->AddInputEventObserver(this);
}
SpuriousMouseMoveEventObserver(const SpuriousMouseMoveEventObserver&) =
delete;
SpuriousMouseMoveEventObserver& operator=(
const SpuriousMouseMoveEventObserver&) = delete;
~SpuriousMouseMoveEventObserver() override {
host_->RemoveInputEventObserver(this);
}
void OnInputEvent(const RenderWidgetHost& widget,
const blink::WebInputEvent& event) override {
EXPECT_NE(blink::WebInputEvent::Type::kMouseMove, event.GetType())
<< "Unexpected mouse move event.";
}
private:
raw_ptr<RenderWidgetHost> host_;
};
} // namespace
// Start an overscroll gesture and then check if the gesture is interrupted by
// a spurious mouse event. Overscrolling may trigger mouse-move events, but
// these should all be marked as synthesized and get dropped while the
// overscroll gesture is in progress.
// See crbug.com/731914
// Disabled due to flakiness: https://crbug.com/807107.
IN_PROC_BROWSER_TEST_F(WebContentsViewAuraTest,
DISABLED_OverscrollNotInterruptedBySpuriousMouseEvents) {
ASSERT_NO_FATAL_FAILURE(StartTestWithPage("/overscroll_navigation.html"));
WebContentsImpl* web_contents = GetWebContentsImpl();
NavigationController& controller = web_contents->GetController();
RenderFrameHost* main_frame = web_contents->GetPrimaryMainFrame();
EXPECT_FALSE(controller.CanGoBack());
EXPECT_FALSE(controller.CanGoForward());
EXPECT_EQ(0, EvalJs(main_frame, "get_current()"));
ASSERT_TRUE(content::ExecJs(main_frame, "navigate_next()"));
EXPECT_EQ(1, EvalJs(main_frame, "get_current()"));
EXPECT_TRUE(controller.CanGoBack());
EXPECT_FALSE(controller.CanGoForward());
// We start an overscroll gesture, but pause mid-gesture.
// Fail the test if the following gesture produces mouse-moves that don't get
// dropped.
SpuriousMouseMoveEventObserver mouse_observer(GetRenderWidgetHost());
blink::WebGestureEvent gesture_scroll_begin(
blink::WebGestureEvent::Type::kGestureScrollBegin,
blink::WebInputEvent::kNoModifiers,
blink::WebInputEvent::GetStaticTimeStampForTests(),
blink::WebGestureDevice::kTouchscreen);
gesture_scroll_begin.data.scroll_begin.delta_hint_units =
ui::ScrollGranularity::kScrollByPrecisePixel;
gesture_scroll_begin.data.scroll_begin.delta_x_hint = 0.f;
gesture_scroll_begin.data.scroll_begin.delta_y_hint = 0.f;
GetRenderWidgetHost()->ForwardGestureEvent(gesture_scroll_begin);
blink::WebGestureEvent gesture_scroll_update(
blink::WebGestureEvent::Type::kGestureScrollUpdate,
blink::WebInputEvent::kNoModifiers,
blink::WebInputEvent::GetStaticTimeStampForTests(),
blink::WebGestureDevice::kTouchscreen);
gesture_scroll_update.data.scroll_update.delta_units =
ui::ScrollGranularity::kScrollByPrecisePixel;
gesture_scroll_update.data.scroll_update.delta_y = 0.f;
float start_threshold = OverscrollConfig::kStartTouchscreenThresholdDips;
gesture_scroll_update.data.scroll_update.delta_x = start_threshold + 1;
GetRenderWidgetHost()->ForwardGestureEvent(gesture_scroll_update);
// Wait for the overscroll gesture to start and then allow some time for the
// spurious mouse event. Since we're testing that an event does not happen,
// we just have a timeout. This could potentially result in the event
// happening after the timeout, which would cause the test to succeed
// incorrectly. That said, the event we're worried about happens almost
// instantly after the start of the overscroll gesture.
base::RunLoop run_loop;
base::SingleThreadTaskRunner::GetCurrentDefault()->PostDelayedTask(
FROM_HERE, run_loop.QuitClosure(), TestTimeouts::tiny_timeout());
run_loop.Run();
// Check that the overscroll gesture was not reset.
OverscrollController* overscroll_controller =
static_cast<RenderWidgetHostViewAura*>(GetRenderWidgetHostView())
->overscroll_controller();
EXPECT_NE(OVERSCROLL_NONE, overscroll_controller->overscroll_mode());
}
// Disabled because the test always fails the first time it runs on the Win Aura
// bots, and usually but not always passes second-try (See crbug.com/179532).
// Flaky on CrOS, Linux, and Fuchsia as well: https://crbug.com/856079
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_LINUX) || \
BUILDFLAG(IS_FUCHSIA)
#define MAYBE_QuickOverscrollDirectionChange \
DISABLED_QuickOverscrollDirectionChange
#else
#define MAYBE_QuickOverscrollDirectionChange QuickOverscrollDirectionChange
#endif
IN_PROC_BROWSER_TEST_F(WebContentsViewAuraTest,
MAYBE_QuickOverscrollDirectionChange) {
ASSERT_NO_FATAL_FAILURE(StartTestWithPage("/overscroll_navigation.html"));
WebContentsImpl* web_contents = GetWebContentsImpl();
RenderFrameHost* main_frame = web_contents->GetPrimaryMainFrame();
// This test triggers a large number of animations. Speed them up to ensure
// the test completes within its time limit.
ui::ScopedAnimationDurationScaleMode fast_duration_mode(
ui::ScopedAnimationDurationScaleMode::FAST_DURATION);
// Make sure the page has both back/forward history.
ASSERT_TRUE(content::ExecJs(main_frame, "navigate_next()"));
EXPECT_EQ(1, GetCurrentIndex());
ASSERT_TRUE(content::ExecJs(main_frame, "navigate_next()"));
EXPECT_EQ(2, GetCurrentIndex());
web_contents->GetController().GoToOffset(-1);
EXPECT_EQ(1, GetCurrentIndex());
aura::Window* content = web_contents->GetContentNativeView();
ui::EventSink* sink = content->GetHost()->GetEventSink();
gfx::Rect bounds = content->GetBoundsInRootWindow();
// Spurious mouse moves interfere with the overscroll gesture which causes
// this test to fail. This observer will let us know if this is happening.
SpuriousMouseMoveEventObserver mouse_observer(GetRenderWidgetHost());
// TODO(crbug.com/40838320): Use a mock timer to generate timestamps for
// events. This would need injecting the mock timer into
// `cc::CompositorFrameReportingController`.
ui::TouchEvent press(
ui::EventType::kTouchPressed,
gfx::Point(bounds.x() + bounds.width() / 2, bounds.y() + 5),
ui::EventTimeForNow(),
ui::PointerDetails(ui::EventPointerType::kTouch, 0));
ui::EventDispatchDetails details = sink->OnEventFromSource(&press);
ASSERT_FALSE(details.dispatcher_destroyed);
EXPECT_EQ(1, GetCurrentIndex());
ui::TouchEvent move1(ui::EventType::kTouchMoved,
gfx::Point(bounds.right() - 10, bounds.y() + 5),
ui::EventTimeForNow(),
ui::PointerDetails(ui::EventPointerType::kTouch, 0));
details = sink->OnEventFromSource(&move1);
ASSERT_FALSE(details.dispatcher_destroyed);
EXPECT_EQ(1, GetCurrentIndex());
// Swipe back from the right edge, back to the left edge, back to the right
// edge.
for (int x = bounds.right() - 10; x >= bounds.x() + 10; x -= 10) {
ui::TouchEvent inc(ui::EventType::kTouchMoved,
gfx::Point(x, bounds.y() + 5), ui::EventTimeForNow(),
ui::PointerDetails(ui::EventPointerType::kTouch, 0));
details = sink->OnEventFromSource(&inc);
ASSERT_FALSE(details.dispatcher_destroyed);
EXPECT_EQ(1, GetCurrentIndex());
}
for (int x = bounds.x() + 10; x <= bounds.width() - 10; x += 10) {
ui::TouchEvent inc(ui::EventType::kTouchMoved,
gfx::Point(x, bounds.y() + 5), ui::EventTimeForNow(),
ui::PointerDetails(ui::EventPointerType::kTouch, 0));
details = sink->OnEventFromSource(&inc);
ASSERT_FALSE(details.dispatcher_destroyed);
EXPECT_EQ(1, GetCurrentIndex());
}
for (int x = bounds.width() - 10; x >= bounds.x() + 10; x -= 10) {
ui::TouchEvent inc(ui::EventType::kTouchMoved,
gfx::Point(x, bounds.y() + 5), ui::EventTimeForNow(),
ui::PointerDetails(ui::EventPointerType::kTouch, 0));
details = sink->OnEventFromSource(&inc);
ASSERT_FALSE(details.dispatcher_destroyed);
EXPECT_EQ(1, GetCurrentIndex());
}
// Do not end the overscroll sequence.
}
// TODO(sadrul): This test is disabled because it reparents in a way the
// FocusController does not support. This code would crash in
// a production build. It only passed prior to this revision
// because testing used the old FocusManager which did some
// different (osbolete) processing. TODO(sadrul) to figure out
// how this test should work that mimics production code a bit
// better.
IN_PROC_BROWSER_TEST_F(WebContentsViewAuraTest,
DISABLED_ContentWindowReparent) {
ASSERT_NO_FATAL_FAILURE(StartTestWithPage("/overscroll_navigation.html"));
std::unique_ptr<aura::Window> window(new aura::Window(nullptr));
window->Init(ui::LAYER_NOT_DRAWN);
WebContentsImpl* web_contents = GetWebContentsImpl();
ASSERT_TRUE(
content::ExecJs(web_contents->GetPrimaryMainFrame(), "navigate_next()"));
EXPECT_EQ(1, GetCurrentIndex());
aura::Window* content = web_contents->GetContentNativeView();
gfx::Rect bounds = content->GetBoundsInRootWindow();
ui::test::EventGenerator generator(content->GetRootWindow(), content);
generator.GestureScrollSequence(
gfx::Point(bounds.x() + 2, bounds.y() + 10),
gfx::Point(bounds.right() - 10, bounds.y() + 10), base::Milliseconds(20),
1);
window->AddChild(shell()->web_contents()->GetContentNativeView());
}
IN_PROC_BROWSER_TEST_F(WebContentsViewAuraTest, DragDropOnOopif) {
ASSERT_TRUE(embedded_test_server()->Start());
GURL url = embedded_test_server()->GetURL(
"a.com", "/overlapping_cross_site_iframe.html");
EXPECT_TRUE(NavigateToURL(shell(), url));
WebContentsImpl* contents = GetWebContentsImpl();
WebContentsViewAura* view = GetWebContentsViewAura();
view->SetDragDestDelegateForTesting(&drag_dest_delegate_);
// Drop on the root frame.
{
drag_dest_delegate_.Reset();
std::unique_ptr<ui::OSExchangeData> data =
std::make_unique<ui::OSExchangeData>();
view->RegisterDropCallbackForTesting(base::BindOnce(
&WebContentsViewAuraTest::OnDropComplete, base::Unretained(this)));
base::RunLoop run_loop;
async_drop_closure_ = run_loop.QuitClosure();
gfx::PointF point = {10, 10};
ui::DropTargetEvent event(*data.get(), point, point,
ui::DragDropTypes::DRAG_COPY);
view->OnDragEntered(event);
EXPECT_TRUE(drag_dest_delegate_.GetDragInitializeCalled());
auto drop_cb = view->GetDropCallback(event);
ASSERT_TRUE(drop_cb);
ui::mojom::DragOperation output_drag_op = ui::mojom::DragOperation::kNone;
std::move(drop_cb).Run(std::move(data), output_drag_op,
/*drag_image_layer_owner=*/nullptr);
run_loop.Run();
EXPECT_EQ(drop_target_widget_,
RenderWidgetHostImpl::From(contents->GetPrimaryFrameTree()
.root()
->current_frame_host()
->GetRenderWidgetHost()));
}
// Drop on the element in the root frame overlapping the embedded OOPIF.
{
drag_dest_delegate_.Reset();
std::unique_ptr<ui::OSExchangeData> data =
std::make_unique<ui::OSExchangeData>();
view->RegisterDropCallbackForTesting(base::BindOnce(
&WebContentsViewAuraTest::OnDropComplete, base::Unretained(this)));
base::RunLoop run_loop;
async_drop_closure_ = run_loop.QuitClosure();
float left =
EvalJs(contents,
"document.getElementById('target').getBoundingClientRect().left")
.ExtractInt();
float top =
EvalJs(contents,
"document.getElementById('target').getBoundingClientRect().top")
.ExtractInt();
gfx::PointF point = {left + 5, top + 5};
ui::DropTargetEvent event(*data.get(), point, point,
ui::DragDropTypes::DRAG_COPY);
view->OnDragEntered(event);
EXPECT_TRUE(drag_dest_delegate_.GetDragInitializeCalled());
auto drop_cb = view->GetDropCallback(event);
ASSERT_TRUE(drop_cb);
ui::mojom::DragOperation output_drag_op = ui::mojom::DragOperation::kNone;
std::move(drop_cb).Run(std::move(data), output_drag_op,
/*drag_image_layer_owner=*/nullptr);
run_loop.Run();
EXPECT_EQ(drop_target_widget_,
RenderWidgetHostImpl::From(contents->GetPrimaryFrameTree()
.root()
->current_frame_host()
->GetRenderWidgetHost()));
}
}
// When the user drops data onto a web page that does not handle drops and the
// web view delegate allows it, the renderer sees this as a "drop" and not a
// "drag leave".
IN_PROC_BROWSER_TEST_F(WebContentsViewAuraTest,
Drop_NoDropZone_DelegateAllows) {
StartTestWithPage("/simple_page.html");
WebContentsViewAura* view = GetWebContentsViewAura();
base::RunLoop run_loop;
async_drop_closure_ = run_loop.QuitClosure();
TestWebContentsViewDelegate* delegate =
PrepareWebContentsViewForDropTest(/*delegate_allows_drop=*/true);
SimulateDragEnterAndDrop(/*document_is_handling_drag=*/false);
delegate->FinishOnPerformingDrop();
run_loop.Run();
ASSERT_FALSE(view->drag_in_progress_);
EXPECT_TRUE(delegate->IsRendererToldToForceDefaultAction());
EXPECT_EQ(1, drag_dest_delegate_.GetOnDropCalledCount());
EXPECT_FALSE(drag_dest_delegate_.GetOnDragLeaveCalled());
}
// When the user drops data onto a web page that does not handle drops and the
// web view delegate blocks it, the renderer sees this as a "drag leave" and not
// a "drop".
IN_PROC_BROWSER_TEST_F(WebContentsViewAuraTest,
Drop_NoDropZone_DelegateBlocks) {
StartTestWithPage("/simple_page.html");
WebContentsViewAura* view = GetWebContentsViewAura();
base::RunLoop run_loop;
async_drop_closure_ = run_loop.QuitClosure();
TestWebContentsViewDelegate* delegate =
PrepareWebContentsViewForDropTest(/*delegate_allows_drop=*/false);
SimulateDragEnterAndDrop(/*document_is_handling_drag=*/false);
delegate->FinishOnPerformingDrop();
run_loop.Run();
ASSERT_FALSE(view->drag_in_progress_);
EXPECT_EQ(0, drag_dest_delegate_.GetOnDropCalledCount());
EXPECT_TRUE(drag_dest_delegate_.GetOnDragLeaveCalled());
}
// When the user drops data onto a web page that handles drops and the web view
// delegate allows it, the renderer sees this as a "drop" and not a "drag
// leave".
IN_PROC_BROWSER_TEST_F(WebContentsViewAuraTest, Drop_DropZone_DelegateAllow) {
StartTestWithPage("/accept-drop.html");
WebContentsViewAura* view = GetWebContentsViewAura();
base::RunLoop run_loop;
async_drop_closure_ = run_loop.QuitClosure();
TestWebContentsViewDelegate* delegate =
PrepareWebContentsViewForDropTest(/*delegate_allows_drop=*/true);
SimulateDragEnterAndDrop(/*document_is_handling_drag=*/true);
delegate->FinishOnPerformingDrop();
run_loop.Run();
ASSERT_FALSE(view->drag_in_progress_);
EXPECT_FALSE(delegate->IsRendererToldToForceDefaultAction());
EXPECT_EQ(1, drag_dest_delegate_.GetOnDropCalledCount());
EXPECT_FALSE(drag_dest_delegate_.GetOnDragLeaveCalled());
}
// When the user drops data onto a web page that handles drops and the web view
// delegate blocks it, the renderer sees this as a "drag leave" and not a
// "drop".
IN_PROC_BROWSER_TEST_F(WebContentsViewAuraTest, Drop_DropZone_DelegateBlocks) {
StartTestWithPage("/accept-drop.html");
WebContentsViewAura* view = GetWebContentsViewAura();
base::RunLoop run_loop;
async_drop_closure_ = run_loop.QuitClosure();
TestWebContentsViewDelegate* delegate =
PrepareWebContentsViewForDropTest(/*delegate_allows_drop=*/false);
SimulateDragEnterAndDrop(/*document_is_handling_drag=*/true);
delegate->FinishOnPerformingDrop();
run_loop.Run();
ASSERT_FALSE(view->drag_in_progress_);
EXPECT_EQ(0, drag_dest_delegate_.GetOnDropCalledCount());
EXPECT_TRUE(drag_dest_delegate_.GetOnDragLeaveCalled());
}
IN_PROC_BROWSER_TEST_F(WebContentsViewAuraTest, ContentWindowClose) {
ASSERT_NO_FATAL_FAILURE(StartTestWithPage("/overscroll_navigation.html"));
WebContentsImpl* web_contents = GetWebContentsImpl();
ASSERT_TRUE(
content::ExecJs(web_contents->GetPrimaryMainFrame(), "navigate_next()"));
EXPECT_EQ(1, GetCurrentIndex());
aura::Window* content = web_contents->GetContentNativeView();
gfx::Rect bounds = content->GetBoundsInRootWindow();
ui::test::EventGenerator generator(content->GetRootWindow(), content);
generator.GestureScrollSequence(
gfx::Point(bounds.x() + 2, bounds.y() + 10),
gfx::Point(bounds.right() - 10, bounds.y() + 10), base::Milliseconds(20),
1);
delete web_contents->GetContentNativeView();
}
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || \
BUILDFLAG(IS_FUCHSIA)
// This appears to be flaky in the same was as the other overscroll
// tests. Enabling for non-Windows platforms.
// See http://crbug.com/369871.
// For linux, see http://crbug.com/381294.
// For ChromeOS, see http://crbug.com/668128.
// For Fuchsia, see https://crbug.com/1318245.
#define MAYBE_RepeatedQuickOverscrollGestures \
DISABLED_RepeatedQuickOverscrollGestures
#else
#define MAYBE_RepeatedQuickOverscrollGestures RepeatedQuickOverscrollGestures
#endif
IN_PROC_BROWSER_TEST_F(WebContentsViewAuraTest,
MAYBE_RepeatedQuickOverscrollGestures) {
ASSERT_NO_FATAL_FAILURE(StartTestWithPage("/overscroll_navigation.html"));
WebContentsImpl* web_contents = GetWebContentsImpl();
NavigationController& controller = web_contents->GetController();
RenderFrameHost* main_frame = web_contents->GetPrimaryMainFrame();
ASSERT_TRUE(content::ExecJs(main_frame, "install_touch_handler()"));
// Navigate twice, then navigate back in history once.
ASSERT_TRUE(content::ExecJs(main_frame, "navigate_next()"));
ASSERT_TRUE(content::ExecJs(main_frame, "navigate_next()"));
EXPECT_EQ(2, GetCurrentIndex());
EXPECT_TRUE(controller.CanGoBack());
EXPECT_FALSE(controller.CanGoForward());
web_contents->GetController().GoBack();
EXPECT_TRUE(WaitForLoadStop(web_contents));
EXPECT_EQ(1, GetCurrentIndex());
EXPECT_EQ(u"Title: #1", web_contents->GetTitle());
EXPECT_TRUE(controller.CanGoBack());
EXPECT_TRUE(controller.CanGoForward());
aura::Window* content = web_contents->GetContentNativeView();
gfx::Rect bounds = content->GetBoundsInRootWindow();
ui::test::EventGenerator generator(content->GetRootWindow(), content);
// Do a swipe left to start a forward navigation. Then quickly do a swipe
// right.
std::u16string expected_title = u"Title: #2";
content::TitleWatcher title_watcher(web_contents, expected_title);
TestNavigationManager nav_watcher(
web_contents,
embedded_test_server()->GetURL("/overscroll_navigation.html#2"));
generator.GestureScrollSequence(
gfx::Point(bounds.right() - 10, bounds.y() + 10),
gfx::Point(bounds.x() + 2, bounds.y() + 10), base::Milliseconds(2000),
10);
ASSERT_TRUE(nav_watcher.WaitForNavigationFinished());
generator.GestureScrollSequence(
gfx::Point(bounds.x() + 2, bounds.y() + 10),
gfx::Point(bounds.right() - 10, bounds.y() + 10),
base::Milliseconds(2000), 10);
std::u16string actual_title = title_watcher.WaitAndGetTitle();
EXPECT_EQ(expected_title, actual_title);
EXPECT_EQ(2, GetCurrentIndex());
EXPECT_TRUE(controller.CanGoBack());
EXPECT_FALSE(controller.CanGoForward());
}
class OverscrollWebContentsDelegate : public WebContentsDelegate {
public:
void SetCanOverscrollContent(bool can_overscroll_content) {
can_overscroll_content_ = can_overscroll_content;
}
// WebContentsDelegate:
bool CanOverscrollContent() override { return can_overscroll_content_; }
private:
bool can_overscroll_content_ = true;
};
IN_PROC_BROWSER_TEST_F(WebContentsViewAuraTest, RenderViewHostChanged) {
ASSERT_NO_FATAL_FAILURE(StartTestWithPage("/overscroll_navigation.html"));
WebContentsImpl* contents = GetWebContentsImpl();
WebContentsViewAura* view = GetWebContentsViewAura();
OverscrollWebContentsDelegate delegate;
contents->SetDelegate(&delegate);
delegate.SetCanOverscrollContent(false);
view->RenderViewHostChanged(nullptr, nullptr);
EXPECT_FALSE(
!!static_cast<RenderWidgetHostViewAura*>(GetRenderWidgetHostView())
->overscroll_controller());
delegate.SetCanOverscrollContent(true);
view->RenderViewHostChanged(nullptr, nullptr);
EXPECT_TRUE(
!!static_cast<RenderWidgetHostViewAura*>(GetRenderWidgetHostView())
->overscroll_controller());
}
// Ensure that SnapToPhysicalPixelBoundary() is called on WebContentsView parent
// change. This is a regression test for http://crbug.com/388908.
// Disabled due to flakiness: https://crbug.com/807107.
IN_PROC_BROWSER_TEST_F(WebContentsViewAuraTest,
DISABLED_WebContentsViewReparent) {
ASSERT_NO_FATAL_FAILURE(StartTestWithPage("/overscroll_navigation.html"));
std::unique_ptr<aura::Window> window(new aura::Window(nullptr));
window->Init(ui::LAYER_NOT_DRAWN);
window->AddChild(shell()->web_contents()->GetNativeView());
}
// Flaky on some platforms, likely for the same reason as other flaky overscroll
// tests. http://crbug.com/305722
// TODO(tdresser): Re-enable this once eager GR is back on. See
// crbug.com/410280.
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX)
#define MAYBE_OverscrollNavigationTouchThrottling \
DISABLED_OverscrollNavigationTouchThrottling
#else
#define MAYBE_OverscrollNavigationTouchThrottling \
DISABLED_OverscrollNavigationTouchThrottling
#endif
// Tests that touch moves are not throttled when performing a scroll gesture on
// a non-scrollable area, except during gesture-nav.
IN_PROC_BROWSER_TEST_F(WebContentsViewAuraTest,
MAYBE_OverscrollNavigationTouchThrottling) {
ASSERT_NO_FATAL_FAILURE(StartTestWithPage("/overscroll_navigation.html"));
WebContentsImpl* web_contents = GetWebContentsImpl();
aura::Window* content = web_contents->GetContentNativeView();
gfx::Rect bounds = content->GetBoundsInRootWindow();
const int dx = 20;
ASSERT_TRUE(content::ExecJs(web_contents->GetPrimaryMainFrame(),
"install_touchmove_handler()"));
WaitAFrame();
for (int navigated = 0; navigated <= 1; ++navigated) {
if (navigated) {
ASSERT_TRUE(content::ExecJs(web_contents->GetPrimaryMainFrame(),
"navigate_next()"));
ASSERT_TRUE(content::ExecJs(web_contents->GetPrimaryMainFrame(),
"reset_touchmove_count()"));
}
InputEventAckWaiter touch_start_waiter(
GetRenderWidgetHost(),
base::BindRepeating([](blink::mojom::InputEventResultSource,
blink::mojom::InputEventResultState state,
const blink::WebInputEvent& event) {
return event.GetType() == blink::WebGestureEvent::Type::kTouchStart &&
state == blink::mojom::InputEventResultState::kNotConsumed;
}));
// Send touch press.
blink::SyntheticWebTouchEvent touch;
touch.PressPoint(bounds.x() + 2, bounds.y() + 10);
GetRenderWidgetHost()
->GetRenderInputRouter()
->ForwardTouchEventWithLatencyInfo(touch, ui::LatencyInfo());
touch_start_waiter.Wait();
WaitAFrame();
// Send first touch move, and then a scroll begin.
touch.MovePoint(0, bounds.x() + 20 + 1 * dx, bounds.y() + 100);
InputEventAckWaiter touch_move_waiter(
GetRenderWidgetHost(),
base::BindRepeating([](blink::mojom::InputEventResultSource,
blink::mojom::InputEventResultState state,
const blink::WebInputEvent& event) {
return event.GetType() == blink::WebGestureEvent::Type::kTouchMove &&
state == blink::mojom::InputEventResultState::kNotConsumed;
}));
GetRenderWidgetHost()
->GetRenderInputRouter()
->ForwardTouchEventWithLatencyInfo(touch, ui::LatencyInfo());
touch_move_waiter.Wait();
blink::WebGestureEvent scroll_begin =
blink::SyntheticWebGestureEventBuilder::BuildScrollBegin(
1, 1, blink::WebGestureDevice::kTouchscreen);
GetRenderWidgetHost()
->GetRenderInputRouter()
->ForwardGestureEventWithLatencyInfo(scroll_begin, ui::LatencyInfo());
// Scroll begin ignores ack disposition, so don't wait for the ack.
WaitAFrame();
// First touchmove already sent, start at 2.
for (int i = 2; i <= 10; ++i) {
// Send a touch move, followed by a scroll update
touch.MovePoint(0, bounds.x() + 20 + i * dx, bounds.y() + 100);
GetRenderWidgetHost()
->GetRenderInputRouter()
->ForwardTouchEventWithLatencyInfo(touch, ui::LatencyInfo());
WaitAFrame();
blink::WebGestureEvent scroll_update =
blink::SyntheticWebGestureEventBuilder::BuildScrollUpdate(
dx, 5, 0, blink::WebGestureDevice::kTouchscreen);
GetRenderWidgetHost()
->GetRenderInputRouter()
->ForwardGestureEventWithLatencyInfo(scroll_update,
ui::LatencyInfo());
WaitAFrame();
}
touch.ReleasePoint(0);
GetRenderWidgetHost()
->GetRenderInputRouter()
->ForwardTouchEventWithLatencyInfo(touch, ui::LatencyInfo());
WaitAFrame();
blink::WebGestureEvent scroll_end(
blink::WebInputEvent::Type::kGestureScrollEnd,
blink::WebInputEvent::kNoModifiers, ui::EventTimeForNow());
GetRenderWidgetHost()
->GetRenderInputRouter()
->ForwardGestureEventWithLatencyInfo(scroll_end, ui::LatencyInfo());
WaitAFrame();
if (!navigated) {
EXPECT_EQ(10, EvalJs(shell(), "touchmoveCount"));
} else {
EXPECT_GT(10, EvalJs(shell(), "touchmoveCount"));
}
}
}
// Tests that running the drop callback will perform drop.
IN_PROC_BROWSER_TEST_F(WebContentsViewAuraTest, GetDropCallback_Run) {
StartTestWithPage("/simple_page.html");
WebContentsImpl* contents = GetWebContentsImpl();
WebContentsViewAura* view = GetWebContentsViewAura();
view->SetDragDestDelegateForTesting(&drag_dest_delegate_);
view->drag_in_progress_ = true;
std::unique_ptr<ui::OSExchangeData> data =
std::make_unique<ui::OSExchangeData>();
view->RegisterDropCallbackForTesting(base::BindOnce(
&WebContentsViewAuraTest::OnDropComplete, base::Unretained(this)));
base::RunLoop run_loop;
async_drop_closure_ = run_loop.QuitClosure();
gfx::PointF point = {10, 10};
ui::DropTargetEvent event(*data.get(), point, point,
ui::DragDropTypes::DRAG_COPY);
view->OnDragEntered(event);
EXPECT_TRUE(drag_dest_delegate_.GetDragInitializeCalled());
auto drop_cb = view->GetDropCallback(event);
ASSERT_TRUE(drop_cb);
ui::mojom::DragOperation output_drag_op = ui::mojom::DragOperation::kNone;
std::move(drop_cb).Run(std::move(data), output_drag_op,
/*drag_image_layer_owner=*/nullptr);
run_loop.Run();
ASSERT_FALSE(view->drag_in_progress_);
EXPECT_EQ(1, drag_dest_delegate_.GetOnDropCalledCount());
EXPECT_FALSE(drag_dest_delegate_.GetOnDragLeaveCalled());
EXPECT_EQ(drop_target_widget_,
RenderWidgetHostImpl::From(contents->GetPrimaryFrameTree()
.root()
->current_frame_host()
->GetRenderWidgetHost()));
}
// Tests that resetting the drop callback won't complete the drop and will exit
// the drag insead.
IN_PROC_BROWSER_TEST_F(WebContentsViewAuraTest, GetDropCallback_Cancelled) {
StartTestWithPage("/simple_page.html");
WebContentsViewAura* view = GetWebContentsViewAura();
view->SetDragDestDelegateForTesting(&drag_dest_delegate_);
view->drag_in_progress_ = true;
std::unique_ptr<ui::OSExchangeData> data =
std::make_unique<ui::OSExchangeData>();
view->RegisterDropCallbackForTesting(base::BindOnce(
&WebContentsViewAuraTest::OnDropComplete, base::Unretained(this)));
gfx::PointF point = {10, 10};
ui::DropTargetEvent event(*data.get(), point, point,
ui::DragDropTypes::DRAG_COPY);
view->OnDragEntered(event);
EXPECT_TRUE(drag_dest_delegate_.GetDragInitializeCalled());
auto drop_cb = view->GetDropCallback(event);
ASSERT_TRUE(drop_cb);
drop_cb.Reset();
ASSERT_FALSE(view->drag_in_progress_);
EXPECT_EQ(0, drag_dest_delegate_.GetOnDropCalledCount());
EXPECT_TRUE(drag_dest_delegate_.GetOnDragLeaveCalled());
}
// Tests that the content is not focusable when inputs are ignored, and that it
// is focusable when inputs are not ignored.
IN_PROC_BROWSER_TEST_F(WebContentsViewAuraTest, IgnoreInputs_Focus) {
ASSERT_NO_FATAL_FAILURE(StartTestWithPage("/simple_page.html"));
WebContentsImpl* contents = GetWebContentsImpl();
aura::WindowDelegate* view = GetWebContentsViewAura();
std::optional<WebContents::ScopedIgnoreInputEvents> ignore_inputs =
contents->IgnoreInputEvents(std::nullopt);
EXPECT_FALSE(view->CanFocus());
ignore_inputs.reset();
EXPECT_TRUE(view->CanFocus());
}
IN_PROC_BROWSER_TEST_F(WebContentsViewAuraTest,
DragInProgressFinishesAfterDrop) {
StartTestWithPage("/simple_page.html");
WebContentsImpl* contents = GetWebContentsImpl();
WebContentsViewAura* view = GetWebContentsViewAura();
base::RunLoop async_drop_run_loop;
async_drop_closure_ = async_drop_run_loop.QuitClosure();
base::RunLoop end_drag_run_loop;
async_end_drag_closure_ = end_drag_run_loop.QuitClosure();
view->end_drag_runner_.ReplaceClosure(base::BindOnce(
&WebContentsViewAuraTest::EndDrag, base::Unretained(this)));
TestWebContentsViewDelegate* delegate =
PrepareWebContentsViewForDropTest(/*delegate_allows_drop=*/true);
SimulateDragEnterAndDrop(/*document_is_handling_drag=*/true);
// `drag_in_progress_` should still be true before `CompleteDrop()` is called.
ASSERT_TRUE(view->drag_in_progress_);
delegate->DelayedFinishOnPerformingDrop();
async_drop_run_loop.Run();
EXPECT_EQ(1, drag_dest_delegate_.GetOnDropCalledCount());
ASSERT_FALSE(view->drag_in_progress_);
end_drag_run_loop.Run();
EXPECT_EQ(drop_target_widget_,
RenderWidgetHostImpl::From(contents->GetPrimaryFrameTree()
.root()
->current_frame_host()
->GetRenderWidgetHost()));
}
// This test is the same as `DragInProgressFinishesAfterDrop`, but it tests the
// scenario where drag_in_progress_ should still be flipped even when drop is
// blocked.
IN_PROC_BROWSER_TEST_F(WebContentsViewAuraTest,
DragInProgressFinishesAfterNoDrop) {
StartTestWithPage("/simple_page.html");
WebContentsImpl* contents = GetWebContentsImpl();
WebContentsViewAura* view = GetWebContentsViewAura();
base::RunLoop async_drop_run_loop;
async_drop_closure_ = async_drop_run_loop.QuitClosure();
base::RunLoop end_drag_run_loop;
async_end_drag_closure_ = end_drag_run_loop.QuitClosure();
view->end_drag_runner_.ReplaceClosure(base::BindOnce(
&WebContentsViewAuraTest::EndDrag, base::Unretained(this)));
TestWebContentsViewDelegate* delegate =
PrepareWebContentsViewForDropTest(/*delegate_allows_drop=*/false);
SimulateDragEnterAndDrop(/*document_is_handling_drag=*/true);
// `drag_in_progress_` should still be true before `CompleteDrop()` is called.
ASSERT_TRUE(view->drag_in_progress_);
delegate->DelayedFinishOnPerformingDrop();
async_drop_run_loop.Run();
EXPECT_EQ(0, drag_dest_delegate_.GetOnDropCalledCount());
ASSERT_FALSE(view->drag_in_progress_);
end_drag_run_loop.Run();
EXPECT_EQ(drop_target_widget_,
RenderWidgetHostImpl::From(contents->GetPrimaryFrameTree()
.root()
->current_frame_host()
->GetRenderWidgetHost()));
}
} // namespace content
|