2013-06-24 23:24:42 +04:00
|
|
|
/* vim:set ts=2 sw=2 sts=2 et: */
|
|
|
|
/* Any copyright is dedicated to the Public Domain.
|
|
|
|
* http://creativecommons.org/publicdomain/zero/1.0/
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
#include "gmock/gmock.h"
|
|
|
|
|
2013-08-15 16:03:31 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2013-06-24 23:24:42 +04:00
|
|
|
#include "mozilla/layers/AsyncCompositionManager.h" // for ViewTransform
|
|
|
|
#include "mozilla/layers/AsyncPanZoomController.h"
|
|
|
|
#include "mozilla/layers/LayerManagerComposite.h"
|
|
|
|
#include "mozilla/layers/GeckoContentController.h"
|
2013-07-30 22:03:41 +04:00
|
|
|
#include "mozilla/layers/CompositorParent.h"
|
|
|
|
#include "mozilla/layers/APZCTreeManager.h"
|
2013-12-12 04:39:06 +04:00
|
|
|
#include "base/task.h"
|
2013-06-24 23:24:42 +04:00
|
|
|
#include "Layers.h"
|
2013-07-02 20:27:17 +04:00
|
|
|
#include "TestLayers.h"
|
2013-06-24 23:24:42 +04:00
|
|
|
|
|
|
|
using namespace mozilla;
|
|
|
|
using namespace mozilla::gfx;
|
|
|
|
using namespace mozilla::layers;
|
|
|
|
using ::testing::_;
|
2014-01-15 19:03:16 +04:00
|
|
|
using ::testing::NiceMock;
|
2013-12-07 21:45:19 +04:00
|
|
|
using ::testing::AtLeast;
|
2014-01-15 19:03:16 +04:00
|
|
|
using ::testing::AtMost;
|
2013-06-24 23:24:42 +04:00
|
|
|
|
2013-12-12 04:39:06 +04:00
|
|
|
class Task;
|
|
|
|
|
2013-06-24 23:24:42 +04:00
|
|
|
class MockContentController : public GeckoContentController {
|
|
|
|
public:
|
|
|
|
MOCK_METHOD1(RequestContentRepaint, void(const FrameMetrics&));
|
2014-02-06 02:43:20 +04:00
|
|
|
MOCK_METHOD2(AcknowledgeScrollUpdate, void(const FrameMetrics::ViewID&, const uint32_t& aScrollGeneration));
|
2014-02-07 21:13:50 +04:00
|
|
|
MOCK_METHOD3(HandleDoubleTap, void(const CSSIntPoint&, int32_t, const ScrollableLayerGuid&));
|
|
|
|
MOCK_METHOD3(HandleSingleTap, void(const CSSIntPoint&, int32_t, const ScrollableLayerGuid&));
|
|
|
|
MOCK_METHOD3(HandleLongTap, void(const CSSIntPoint&, int32_t, const ScrollableLayerGuid&));
|
|
|
|
MOCK_METHOD3(HandleLongTapUp, void(const CSSIntPoint&, int32_t, const ScrollableLayerGuid&));
|
2013-11-09 04:07:00 +04:00
|
|
|
MOCK_METHOD3(SendAsyncScrollDOMEvent, void(bool aIsRoot, const CSSRect &aContentRect, const CSSSize &aScrollableSize));
|
2013-06-24 23:24:42 +04:00
|
|
|
MOCK_METHOD2(PostDelayedTask, void(Task* aTask, int aDelayMs));
|
|
|
|
};
|
|
|
|
|
2013-12-12 04:39:06 +04:00
|
|
|
class MockContentControllerDelayed : public MockContentController {
|
|
|
|
public:
|
2014-02-11 19:42:42 +04:00
|
|
|
MockContentControllerDelayed()
|
|
|
|
: mCurrentTask(nullptr)
|
|
|
|
{
|
|
|
|
}
|
2013-12-12 04:39:06 +04:00
|
|
|
|
|
|
|
void PostDelayedTask(Task* aTask, int aDelayMs) {
|
2014-02-11 19:42:42 +04:00
|
|
|
// Ensure we're not clobbering an existing task
|
|
|
|
EXPECT_TRUE(nullptr == mCurrentTask);
|
2013-12-12 04:39:06 +04:00
|
|
|
mCurrentTask = aTask;
|
|
|
|
}
|
|
|
|
|
2014-02-11 19:42:42 +04:00
|
|
|
void CheckHasDelayedTask() {
|
|
|
|
EXPECT_TRUE(nullptr != mCurrentTask);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClearDelayedTask() {
|
|
|
|
mCurrentTask = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Note that deleting mCurrentTask is important in order to
|
|
|
|
// release the reference to the callee object. Without this
|
|
|
|
// that object might be leaked. This is also why we don't
|
|
|
|
// expose mCurrentTask to any users of MockContentControllerDelayed.
|
|
|
|
void RunDelayedTask() {
|
|
|
|
// Running mCurrentTask may call PostDelayedTask, so we should
|
|
|
|
// keep a local copy of mCurrentTask and operate on that
|
|
|
|
Task* local = mCurrentTask;
|
|
|
|
mCurrentTask = nullptr;
|
|
|
|
local->Run();
|
|
|
|
delete local;
|
2013-12-12 04:39:06 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
Task *mCurrentTask;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2013-07-02 20:27:17 +04:00
|
|
|
class TestAPZCContainerLayer : public ContainerLayer {
|
2013-06-24 23:24:42 +04:00
|
|
|
public:
|
2013-07-02 20:27:17 +04:00
|
|
|
TestAPZCContainerLayer()
|
2013-06-24 23:24:42 +04:00
|
|
|
: ContainerLayer(nullptr, nullptr)
|
|
|
|
{}
|
|
|
|
void RemoveChild(Layer* aChild) {}
|
|
|
|
void InsertAfter(Layer* aChild, Layer* aAfter) {}
|
2014-01-27 19:28:04 +04:00
|
|
|
void ComputeEffectiveTransforms(const Matrix4x4& aTransformToSurface) {}
|
2013-06-24 23:24:42 +04:00
|
|
|
void RepositionChild(Layer* aChild, Layer* aAfter) {}
|
|
|
|
};
|
|
|
|
|
2013-07-30 22:03:40 +04:00
|
|
|
class TestAsyncPanZoomController : public AsyncPanZoomController {
|
|
|
|
public:
|
2013-11-30 01:40:21 +04:00
|
|
|
TestAsyncPanZoomController(uint64_t aLayersId, MockContentController* aMcc,
|
2013-12-11 21:19:33 +04:00
|
|
|
APZCTreeManager* aTreeManager = nullptr,
|
|
|
|
GestureBehavior aBehavior = DEFAULT_GESTURES)
|
|
|
|
: AsyncPanZoomController(aLayersId, aTreeManager, aMcc, aBehavior)
|
2013-07-30 22:03:40 +04:00
|
|
|
{}
|
|
|
|
|
2014-01-15 19:03:16 +04:00
|
|
|
// Since touch-action-enabled property is global - setting it for each test
|
|
|
|
// separately isn't safe from the concurrency point of view. To make tests
|
|
|
|
// run concurrent and independent from each other we have a member variable
|
|
|
|
// mTouchActionEnabled for each apzc and setter defined here.
|
|
|
|
void SetTouchActionEnabled(const bool touchActionEnabled) {
|
|
|
|
ReentrantMonitorAutoEnter lock(mMonitor);
|
|
|
|
mTouchActionPropertyEnabled = touchActionEnabled;
|
|
|
|
}
|
|
|
|
|
2013-07-30 22:03:40 +04:00
|
|
|
void SetFrameMetrics(const FrameMetrics& metrics) {
|
2013-07-31 16:53:16 +04:00
|
|
|
ReentrantMonitorAutoEnter lock(mMonitor);
|
2013-07-30 22:03:40 +04:00
|
|
|
mFrameMetrics = metrics;
|
|
|
|
}
|
2013-10-10 20:21:50 +04:00
|
|
|
|
|
|
|
FrameMetrics GetFrameMetrics() {
|
|
|
|
ReentrantMonitorAutoEnter lock(mMonitor);
|
|
|
|
return mFrameMetrics;
|
|
|
|
}
|
2013-07-30 22:03:40 +04:00
|
|
|
};
|
|
|
|
|
2013-07-30 22:03:41 +04:00
|
|
|
class TestAPZCTreeManager : public APZCTreeManager {
|
|
|
|
protected:
|
|
|
|
void AssertOnCompositorThread() MOZ_OVERRIDE { /* no-op */ }
|
2013-11-30 01:40:21 +04:00
|
|
|
|
|
|
|
public:
|
|
|
|
// Expose this so test code can call it directly.
|
|
|
|
void BuildOverscrollHandoffChain(AsyncPanZoomController* aApzc) {
|
|
|
|
APZCTreeManager::BuildOverscrollHandoffChain(aApzc);
|
|
|
|
}
|
2013-07-30 22:03:41 +04:00
|
|
|
};
|
|
|
|
|
2013-06-24 23:24:42 +04:00
|
|
|
static
|
|
|
|
FrameMetrics TestFrameMetrics() {
|
|
|
|
FrameMetrics fm;
|
|
|
|
|
|
|
|
fm.mDisplayPort = CSSRect(0, 0, 10, 10);
|
|
|
|
fm.mCompositionBounds = ScreenIntRect(0, 0, 10, 10);
|
|
|
|
fm.mCriticalDisplayPort = CSSRect(0, 0, 10, 10);
|
|
|
|
fm.mScrollableRect = CSSRect(0, 0, 100, 100);
|
|
|
|
fm.mViewport = CSSRect(0, 0, 10, 10);
|
|
|
|
|
|
|
|
return fm;
|
|
|
|
}
|
|
|
|
|
2014-01-15 19:03:16 +04:00
|
|
|
/*
|
|
|
|
* Dispatches mock touch events to the apzc and checks whether apzc properly
|
|
|
|
* consumed them and triggered scrolling behavior.
|
|
|
|
*/
|
2013-06-24 23:24:42 +04:00
|
|
|
static
|
2014-02-15 08:55:41 +04:00
|
|
|
void ApzcPan(AsyncPanZoomController* apzc, TestAPZCTreeManager* aTreeManager, int& aTime, int aTouchStartY, int aTouchEndY, bool expectIgnoredPan = false) {
|
2013-06-24 23:24:42 +04:00
|
|
|
|
|
|
|
const int TIME_BETWEEN_TOUCH_EVENT = 100;
|
|
|
|
const int OVERCOME_TOUCH_TOLERANCE = 100;
|
|
|
|
MultiTouchInput mti;
|
|
|
|
nsEventStatus status;
|
|
|
|
|
2013-11-30 01:40:21 +04:00
|
|
|
// Since we're passing inputs directly to the APZC instead of going through
|
|
|
|
// the tree manager, we need to build the overscroll handoff chain explicitly
|
|
|
|
// for panning to work correctly.
|
|
|
|
aTreeManager->BuildOverscrollHandoffChain(apzc);
|
|
|
|
|
2013-11-26 08:30:26 +04:00
|
|
|
mti = MultiTouchInput(MultiTouchInput::MULTITOUCH_START, aTime, 0);
|
2013-06-24 23:24:42 +04:00
|
|
|
aTime += TIME_BETWEEN_TOUCH_EVENT;
|
|
|
|
// Make sure the move is large enough to not be handled as a tap
|
|
|
|
mti.mTouches.AppendElement(SingleTouchData(0, ScreenIntPoint(10, aTouchStartY+OVERCOME_TOUCH_TOLERANCE), ScreenSize(0, 0), 0, 0));
|
2014-02-15 08:55:41 +04:00
|
|
|
status = apzc->HandleInputEvent(mti);
|
|
|
|
EXPECT_EQ(status, nsEventStatus_eConsumeNoDefault);
|
2013-06-24 23:24:42 +04:00
|
|
|
// APZC should be in TOUCHING state
|
|
|
|
|
2014-01-15 19:03:16 +04:00
|
|
|
nsEventStatus touchMoveStatus;
|
|
|
|
if (expectIgnoredPan) {
|
|
|
|
// APZC should ignore panning, be in TOUCHING state and therefore return eIgnore.
|
|
|
|
// The same applies to all consequent touch move events.
|
|
|
|
touchMoveStatus = nsEventStatus_eIgnore;
|
|
|
|
} else {
|
|
|
|
// APZC should go into the panning state and therefore consume the event.
|
|
|
|
touchMoveStatus = nsEventStatus_eConsumeNoDefault;
|
|
|
|
}
|
|
|
|
|
2013-11-26 08:30:26 +04:00
|
|
|
mti = MultiTouchInput(MultiTouchInput::MULTITOUCH_MOVE, aTime, 0);
|
2013-06-24 23:24:42 +04:00
|
|
|
aTime += TIME_BETWEEN_TOUCH_EVENT;
|
|
|
|
mti.mTouches.AppendElement(SingleTouchData(0, ScreenIntPoint(10, aTouchStartY), ScreenSize(0, 0), 0, 0));
|
2014-02-15 08:55:41 +04:00
|
|
|
status = apzc->HandleInputEvent(mti);
|
2014-01-15 19:03:16 +04:00
|
|
|
EXPECT_EQ(status, touchMoveStatus);
|
2013-06-24 23:24:42 +04:00
|
|
|
|
2013-11-26 08:30:26 +04:00
|
|
|
mti = MultiTouchInput(MultiTouchInput::MULTITOUCH_MOVE, aTime, 0);
|
2013-06-24 23:24:42 +04:00
|
|
|
aTime += TIME_BETWEEN_TOUCH_EVENT;
|
|
|
|
mti.mTouches.AppendElement(SingleTouchData(0, ScreenIntPoint(10, aTouchEndY), ScreenSize(0, 0), 0, 0));
|
2014-02-15 08:55:41 +04:00
|
|
|
status = apzc->HandleInputEvent(mti);
|
2014-01-15 19:03:16 +04:00
|
|
|
EXPECT_EQ(status, touchMoveStatus);
|
2013-06-24 23:24:42 +04:00
|
|
|
|
2013-11-26 08:30:26 +04:00
|
|
|
mti = MultiTouchInput(MultiTouchInput::MULTITOUCH_END, aTime, 0);
|
2013-06-24 23:24:42 +04:00
|
|
|
aTime += TIME_BETWEEN_TOUCH_EVENT;
|
|
|
|
mti.mTouches.AppendElement(SingleTouchData(0, ScreenIntPoint(10, aTouchEndY), ScreenSize(0, 0), 0, 0));
|
2014-02-15 08:55:41 +04:00
|
|
|
status = apzc->HandleInputEvent(mti);
|
2013-06-24 23:24:42 +04:00
|
|
|
}
|
|
|
|
|
2014-01-15 19:03:16 +04:00
|
|
|
static
|
|
|
|
void DoPanTest(bool aShouldTriggerScroll, bool aShouldUseTouchAction, uint32_t aBehavior)
|
|
|
|
{
|
|
|
|
TimeStamp testStartTime = TimeStamp::Now();
|
|
|
|
AsyncPanZoomController::SetFrameTime(testStartTime);
|
|
|
|
|
|
|
|
nsRefPtr<MockContentController> mcc = new NiceMock<MockContentController>();
|
|
|
|
nsRefPtr<TestAPZCTreeManager> tm = new TestAPZCTreeManager();
|
|
|
|
nsRefPtr<TestAsyncPanZoomController> apzc = new TestAsyncPanZoomController(0, mcc, tm);
|
|
|
|
|
|
|
|
apzc->SetTouchActionEnabled(aShouldUseTouchAction);
|
|
|
|
apzc->SetFrameMetrics(TestFrameMetrics());
|
|
|
|
apzc->NotifyLayersUpdated(TestFrameMetrics(), true);
|
|
|
|
|
|
|
|
if (aShouldTriggerScroll) {
|
|
|
|
EXPECT_CALL(*mcc, SendAsyncScrollDOMEvent(_,_,_)).Times(AtLeast(1));
|
|
|
|
EXPECT_CALL(*mcc, RequestContentRepaint(_)).Times(1);
|
|
|
|
} else {
|
|
|
|
EXPECT_CALL(*mcc, SendAsyncScrollDOMEvent(_,_,_)).Times(0);
|
|
|
|
EXPECT_CALL(*mcc, RequestContentRepaint(_)).Times(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int time = 0;
|
|
|
|
int touchStart = 50;
|
|
|
|
int touchEnd = 10;
|
|
|
|
ScreenPoint pointOut;
|
|
|
|
ViewTransform viewTransformOut;
|
|
|
|
|
|
|
|
nsTArray<uint32_t> values;
|
|
|
|
values.AppendElement(aBehavior);
|
|
|
|
|
|
|
|
// Pan down
|
|
|
|
apzc->SetAllowedTouchBehavior(values);
|
|
|
|
ApzcPan(apzc, tm, time, touchStart, touchEnd, !aShouldTriggerScroll);
|
|
|
|
apzc->SampleContentTransformForFrame(testStartTime, &viewTransformOut, pointOut);
|
|
|
|
|
|
|
|
if (aShouldTriggerScroll) {
|
|
|
|
EXPECT_EQ(pointOut, ScreenPoint(0, -(touchEnd-touchStart)));
|
|
|
|
EXPECT_NE(viewTransformOut, ViewTransform());
|
|
|
|
} else {
|
|
|
|
EXPECT_EQ(pointOut, ScreenPoint());
|
|
|
|
EXPECT_EQ(viewTransformOut, ViewTransform());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Pan back
|
|
|
|
apzc->SetAllowedTouchBehavior(values);
|
|
|
|
ApzcPan(apzc, tm, time, touchEnd, touchStart, !aShouldTriggerScroll);
|
|
|
|
apzc->SampleContentTransformForFrame(testStartTime, &viewTransformOut, pointOut);
|
|
|
|
|
|
|
|
EXPECT_EQ(pointOut, ScreenPoint());
|
|
|
|
EXPECT_EQ(viewTransformOut, ViewTransform());
|
2014-01-22 22:37:30 +04:00
|
|
|
|
|
|
|
apzc->Destroy();
|
2014-01-15 19:03:16 +04:00
|
|
|
}
|
|
|
|
|
2013-11-10 18:48:12 +04:00
|
|
|
static void
|
|
|
|
ApzcPinch(AsyncPanZoomController* aApzc, int aFocusX, int aFocusY, float aScale) {
|
|
|
|
aApzc->HandleInputEvent(PinchGestureInput(PinchGestureInput::PINCHGESTURE_START,
|
|
|
|
0,
|
|
|
|
ScreenPoint(aFocusX, aFocusY),
|
|
|
|
10.0,
|
2013-11-26 08:30:26 +04:00
|
|
|
10.0,
|
|
|
|
0));
|
2013-11-10 18:48:12 +04:00
|
|
|
aApzc->HandleInputEvent(PinchGestureInput(PinchGestureInput::PINCHGESTURE_SCALE,
|
|
|
|
0,
|
|
|
|
ScreenPoint(aFocusX, aFocusY),
|
|
|
|
10.0 * aScale,
|
2013-11-26 08:30:26 +04:00
|
|
|
10.0,
|
|
|
|
0));
|
2013-11-10 18:48:12 +04:00
|
|
|
aApzc->HandleInputEvent(PinchGestureInput(PinchGestureInput::PINCHGESTURE_END,
|
|
|
|
0,
|
|
|
|
ScreenPoint(aFocusX, aFocusY),
|
2013-10-19 01:13:26 +04:00
|
|
|
// note: negative values here tell APZC
|
|
|
|
// not to turn the pinch into a pan
|
|
|
|
-1.0,
|
2013-11-26 08:30:26 +04:00
|
|
|
-1.0,
|
|
|
|
0));
|
2013-11-10 18:48:12 +04:00
|
|
|
}
|
|
|
|
|
2013-12-11 21:19:33 +04:00
|
|
|
static nsEventStatus
|
2013-12-12 04:39:06 +04:00
|
|
|
ApzcDown(AsyncPanZoomController* apzc, int aX, int aY, int& aTime) {
|
2013-12-11 21:19:33 +04:00
|
|
|
MultiTouchInput mti = MultiTouchInput(MultiTouchInput::MULTITOUCH_START, aTime, 0);
|
|
|
|
mti.mTouches.AppendElement(SingleTouchData(0, ScreenIntPoint(aX, aY), ScreenSize(0, 0), 0, 0));
|
2013-12-12 04:39:06 +04:00
|
|
|
return apzc->ReceiveInputEvent(mti);
|
|
|
|
}
|
2013-12-11 21:19:33 +04:00
|
|
|
|
2013-12-12 04:39:06 +04:00
|
|
|
static nsEventStatus
|
|
|
|
ApzcUp(AsyncPanZoomController* apzc, int aX, int aY, int& aTime) {
|
|
|
|
MultiTouchInput mti = MultiTouchInput(MultiTouchInput::MULTITOUCH_END, aTime, 0);
|
2013-12-11 21:19:33 +04:00
|
|
|
mti.mTouches.AppendElement(SingleTouchData(0, ScreenIntPoint(aX, aY), ScreenSize(0, 0), 0, 0));
|
|
|
|
return apzc->ReceiveInputEvent(mti);
|
|
|
|
}
|
|
|
|
|
2013-12-12 04:39:06 +04:00
|
|
|
static nsEventStatus
|
2014-02-11 19:42:42 +04:00
|
|
|
ApzcTap(AsyncPanZoomController* apzc, int aX, int aY, int& aTime, int aTapLength, MockContentControllerDelayed* mcc = nullptr) {
|
2013-12-12 04:39:06 +04:00
|
|
|
nsEventStatus status = ApzcDown(apzc, aX, aY, aTime);
|
2014-02-11 19:42:42 +04:00
|
|
|
if (mcc != nullptr) {
|
|
|
|
// There will be a delayed task posted for the long-tap timeout, but
|
|
|
|
// if we were provided a non-null mcc we want to clear it.
|
|
|
|
mcc->CheckHasDelayedTask();
|
|
|
|
mcc->ClearDelayedTask();
|
|
|
|
}
|
2013-12-12 04:39:06 +04:00
|
|
|
EXPECT_EQ(nsEventStatus_eConsumeNoDefault, status);
|
|
|
|
aTime += aTapLength;
|
|
|
|
return ApzcUp(apzc, aX, aY, aTime);
|
|
|
|
}
|
|
|
|
|
2013-06-24 23:24:42 +04:00
|
|
|
TEST(AsyncPanZoomController, Constructor) {
|
|
|
|
// RefCounted class can't live in the stack
|
2013-11-19 05:54:22 +04:00
|
|
|
nsRefPtr<MockContentController> mcc = new NiceMock<MockContentController>();
|
2013-07-30 22:03:40 +04:00
|
|
|
nsRefPtr<TestAsyncPanZoomController> apzc = new TestAsyncPanZoomController(0, mcc);
|
2013-07-30 22:03:40 +04:00
|
|
|
apzc->SetFrameMetrics(TestFrameMetrics());
|
2013-06-24 23:24:42 +04:00
|
|
|
}
|
|
|
|
|
2013-10-10 20:21:50 +04:00
|
|
|
TEST(AsyncPanZoomController, Pinch) {
|
2013-11-19 05:54:22 +04:00
|
|
|
nsRefPtr<MockContentController> mcc = new NiceMock<MockContentController>();
|
2013-10-10 20:21:50 +04:00
|
|
|
nsRefPtr<TestAsyncPanZoomController> apzc = new TestAsyncPanZoomController(0, mcc);
|
|
|
|
|
|
|
|
FrameMetrics fm;
|
|
|
|
fm.mViewport = CSSRect(0, 0, 980, 480);
|
|
|
|
fm.mCompositionBounds = ScreenIntRect(200, 200, 100, 200);
|
|
|
|
fm.mScrollableRect = CSSRect(0, 0, 980, 1000);
|
|
|
|
fm.mScrollOffset = CSSPoint(300, 300);
|
|
|
|
fm.mZoom = CSSToScreenScale(2.0);
|
|
|
|
apzc->SetFrameMetrics(fm);
|
2014-01-13 21:35:00 +04:00
|
|
|
apzc->UpdateZoomConstraints(ZoomConstraints(true, CSSToScreenScale(0.25), CSSToScreenScale(4.0)));
|
2013-10-10 20:21:50 +04:00
|
|
|
// the visible area of the document in CSS pixels is x=300 y=300 w=50 h=100
|
|
|
|
|
2013-12-07 21:45:19 +04:00
|
|
|
EXPECT_CALL(*mcc, SendAsyncScrollDOMEvent(_,_,_)).Times(AtLeast(1));
|
2013-10-10 20:21:50 +04:00
|
|
|
EXPECT_CALL(*mcc, RequestContentRepaint(_)).Times(1);
|
|
|
|
|
2013-11-10 18:48:12 +04:00
|
|
|
ApzcPinch(apzc, 250, 300, 1.25);
|
2013-10-10 20:21:50 +04:00
|
|
|
|
|
|
|
// the visible area of the document in CSS pixels is now x=305 y=310 w=40 h=80
|
|
|
|
fm = apzc->GetFrameMetrics();
|
|
|
|
EXPECT_EQ(fm.mZoom.scale, 2.5f);
|
|
|
|
EXPECT_EQ(fm.mScrollOffset.x, 305);
|
|
|
|
EXPECT_EQ(fm.mScrollOffset.y, 310);
|
|
|
|
|
|
|
|
// part 2 of the test, move to the top-right corner of the page and pinch and
|
|
|
|
// make sure we stay in the correct spot
|
|
|
|
fm.mZoom = CSSToScreenScale(2.0);
|
|
|
|
fm.mScrollOffset = CSSPoint(930, 5);
|
|
|
|
apzc->SetFrameMetrics(fm);
|
|
|
|
// the visible area of the document in CSS pixels is x=930 y=5 w=50 h=100
|
|
|
|
|
2013-11-10 18:48:12 +04:00
|
|
|
ApzcPinch(apzc, 250, 300, 0.5);
|
2013-10-10 20:21:50 +04:00
|
|
|
|
|
|
|
// the visible area of the document in CSS pixels is now x=880 y=0 w=100 h=200
|
|
|
|
fm = apzc->GetFrameMetrics();
|
|
|
|
EXPECT_EQ(fm.mZoom.scale, 1.0f);
|
|
|
|
EXPECT_EQ(fm.mScrollOffset.x, 880);
|
|
|
|
EXPECT_EQ(fm.mScrollOffset.y, 0);
|
2014-01-22 22:37:30 +04:00
|
|
|
|
|
|
|
apzc->Destroy();
|
2013-10-10 20:21:50 +04:00
|
|
|
}
|
|
|
|
|
2014-01-15 19:03:16 +04:00
|
|
|
TEST(AsyncPanZoomController, PinchWithTouchActionNone) {
|
|
|
|
nsRefPtr<MockContentController> mcc = new NiceMock<MockContentController>();
|
|
|
|
nsRefPtr<TestAsyncPanZoomController> apzc = new TestAsyncPanZoomController(0, mcc);
|
|
|
|
|
|
|
|
FrameMetrics fm;
|
|
|
|
fm.mViewport = CSSRect(0, 0, 980, 480);
|
|
|
|
fm.mCompositionBounds = ScreenIntRect(200, 200, 100, 200);
|
|
|
|
fm.mScrollableRect = CSSRect(0, 0, 980, 1000);
|
|
|
|
fm.mScrollOffset = CSSPoint(300, 300);
|
|
|
|
fm.mZoom = CSSToScreenScale(2.0);
|
|
|
|
apzc->SetFrameMetrics(fm);
|
|
|
|
// the visible area of the document in CSS pixels is x=300 y=300 w=50 h=100
|
|
|
|
|
|
|
|
// Apzc's OnScaleEnd method calls once SendAsyncScrollDOMEvent and RequestContentRepaint methods,
|
|
|
|
// therefore we're setting these specific values.
|
|
|
|
EXPECT_CALL(*mcc, SendAsyncScrollDOMEvent(_,_,_)).Times(AtMost(1));
|
|
|
|
EXPECT_CALL(*mcc, RequestContentRepaint(_)).Times(AtMost(1));
|
|
|
|
|
|
|
|
nsTArray<uint32_t> values;
|
|
|
|
values.AppendElement(mozilla::layers::AllowedTouchBehavior::VERTICAL_PAN);
|
|
|
|
values.AppendElement(mozilla::layers::AllowedTouchBehavior::ZOOM);
|
|
|
|
apzc->SetTouchActionEnabled(true);
|
|
|
|
|
|
|
|
apzc->SetAllowedTouchBehavior(values);
|
|
|
|
ApzcPinch(apzc, 250, 300, 1.25);
|
|
|
|
|
|
|
|
// The frame metrics should stay the same since touch-action:none makes
|
|
|
|
// apzc ignore pinch gestures.
|
|
|
|
fm = apzc->GetFrameMetrics();
|
|
|
|
EXPECT_EQ(fm.mZoom.scale, 2.0f);
|
|
|
|
EXPECT_EQ(fm.mScrollOffset.x, 300);
|
|
|
|
EXPECT_EQ(fm.mScrollOffset.y, 300);
|
|
|
|
}
|
|
|
|
|
2013-10-11 01:00:29 +04:00
|
|
|
TEST(AsyncPanZoomController, Overzoom) {
|
2013-11-19 05:54:22 +04:00
|
|
|
nsRefPtr<MockContentController> mcc = new NiceMock<MockContentController>();
|
2013-10-11 01:00:29 +04:00
|
|
|
nsRefPtr<TestAsyncPanZoomController> apzc = new TestAsyncPanZoomController(0, mcc);
|
|
|
|
|
|
|
|
FrameMetrics fm;
|
|
|
|
fm.mViewport = CSSRect(0, 0, 100, 100);
|
|
|
|
fm.mCompositionBounds = ScreenIntRect(0, 0, 100, 100);
|
|
|
|
fm.mScrollableRect = CSSRect(0, 0, 125, 150);
|
|
|
|
fm.mScrollOffset = CSSPoint(10, 0);
|
|
|
|
fm.mZoom = CSSToScreenScale(1.0);
|
|
|
|
apzc->SetFrameMetrics(fm);
|
2014-01-13 21:35:00 +04:00
|
|
|
apzc->UpdateZoomConstraints(ZoomConstraints(true, CSSToScreenScale(0.25), CSSToScreenScale(4.0)));
|
2013-10-11 01:00:29 +04:00
|
|
|
// the visible area of the document in CSS pixels is x=10 y=0 w=100 h=100
|
|
|
|
|
2013-12-07 21:45:19 +04:00
|
|
|
EXPECT_CALL(*mcc, SendAsyncScrollDOMEvent(_,_,_)).Times(AtLeast(1));
|
2013-10-11 01:00:29 +04:00
|
|
|
EXPECT_CALL(*mcc, RequestContentRepaint(_)).Times(1);
|
|
|
|
|
2013-11-10 18:48:12 +04:00
|
|
|
ApzcPinch(apzc, 50, 50, 0.5);
|
2013-10-11 01:00:29 +04:00
|
|
|
|
|
|
|
fm = apzc->GetFrameMetrics();
|
|
|
|
EXPECT_EQ(fm.mZoom.scale, 0.8f);
|
2013-11-10 18:47:27 +04:00
|
|
|
// bug 936721 - PGO builds introduce rounding error so
|
|
|
|
// use a fuzzy match instead
|
|
|
|
EXPECT_LT(abs(fm.mScrollOffset.x), 1e-5);
|
|
|
|
EXPECT_LT(abs(fm.mScrollOffset.y), 1e-5);
|
2013-10-11 01:00:29 +04:00
|
|
|
}
|
|
|
|
|
2013-06-24 23:24:42 +04:00
|
|
|
TEST(AsyncPanZoomController, SimpleTransform) {
|
|
|
|
TimeStamp testStartTime = TimeStamp::Now();
|
|
|
|
// RefCounted class can't live in the stack
|
2013-11-19 05:54:22 +04:00
|
|
|
nsRefPtr<MockContentController> mcc = new NiceMock<MockContentController>();
|
2013-07-30 22:03:40 +04:00
|
|
|
nsRefPtr<TestAsyncPanZoomController> apzc = new TestAsyncPanZoomController(0, mcc);
|
2013-07-30 22:03:40 +04:00
|
|
|
apzc->SetFrameMetrics(TestFrameMetrics());
|
2013-06-24 23:24:42 +04:00
|
|
|
|
|
|
|
ScreenPoint pointOut;
|
|
|
|
ViewTransform viewTransformOut;
|
2013-07-30 22:03:41 +04:00
|
|
|
apzc->SampleContentTransformForFrame(testStartTime, &viewTransformOut, pointOut);
|
2013-06-24 23:24:42 +04:00
|
|
|
|
|
|
|
EXPECT_EQ(pointOut, ScreenPoint());
|
|
|
|
EXPECT_EQ(viewTransformOut, ViewTransform());
|
|
|
|
}
|
|
|
|
|
2013-07-08 23:53:51 +04:00
|
|
|
|
|
|
|
TEST(AsyncPanZoomController, ComplexTransform) {
|
|
|
|
TimeStamp testStartTime = TimeStamp::Now();
|
|
|
|
AsyncPanZoomController::SetFrameTime(testStartTime);
|
|
|
|
|
|
|
|
// This test assumes there is a page that gets rendered to
|
|
|
|
// two layers. In CSS pixels, the first layer is 50x50 and
|
|
|
|
// the second layer is 25x50. The widget scale factor is 3.0
|
|
|
|
// and the presShell resolution is 2.0. Therefore, these layers
|
|
|
|
// end up being 300x300 and 150x300 in layer pixels.
|
|
|
|
//
|
|
|
|
// The second (child) layer has an additional CSS transform that
|
|
|
|
// stretches it by 2.0 on the x-axis. Therefore, after applying
|
|
|
|
// CSS transforms, the two layers are the same size in screen
|
|
|
|
// pixels.
|
|
|
|
//
|
|
|
|
// The screen itself is 24x24 in screen pixels (therefore 4x4 in
|
|
|
|
// CSS pixels). The displayport is 1 extra CSS pixel on all
|
|
|
|
// sides.
|
|
|
|
|
2013-11-19 05:54:22 +04:00
|
|
|
nsRefPtr<MockContentController> mcc = new NiceMock<MockContentController>();
|
2013-07-30 22:03:40 +04:00
|
|
|
nsRefPtr<TestAsyncPanZoomController> apzc = new TestAsyncPanZoomController(0, mcc);
|
|
|
|
nsRefPtr<TestAsyncPanZoomController> childApzc = new TestAsyncPanZoomController(0, mcc);
|
2013-07-08 23:53:51 +04:00
|
|
|
|
|
|
|
const char* layerTreeSyntax = "c(c)";
|
|
|
|
// LayerID 0 1
|
|
|
|
nsIntRegion layerVisibleRegion[] = {
|
|
|
|
nsIntRegion(nsIntRect(0, 0, 300, 300)),
|
|
|
|
nsIntRegion(nsIntRect(0, 0, 150, 300)),
|
|
|
|
};
|
|
|
|
gfx3DMatrix transforms[] = {
|
|
|
|
gfx3DMatrix(),
|
|
|
|
gfx3DMatrix(),
|
|
|
|
};
|
|
|
|
transforms[0].ScalePost(0.5f, 0.5f, 1.0f); // this results from the 2.0 resolution on the root layer
|
|
|
|
transforms[1].ScalePost(2.0f, 1.0f, 1.0f); // this is the 2.0 x-axis CSS transform on the child layer
|
|
|
|
|
|
|
|
nsTArray<nsRefPtr<Layer> > layers;
|
|
|
|
nsRefPtr<LayerManager> lm;
|
|
|
|
nsRefPtr<Layer> root = CreateLayerTree(layerTreeSyntax, layerVisibleRegion, transforms, lm, layers);
|
|
|
|
|
|
|
|
FrameMetrics metrics;
|
|
|
|
metrics.mCompositionBounds = ScreenIntRect(0, 0, 24, 24);
|
|
|
|
metrics.mDisplayPort = CSSRect(-1, -1, 6, 6);
|
|
|
|
metrics.mViewport = CSSRect(0, 0, 4, 4);
|
|
|
|
metrics.mScrollOffset = CSSPoint(10, 10);
|
|
|
|
metrics.mScrollableRect = CSSRect(0, 0, 50, 50);
|
2013-09-06 02:26:59 +04:00
|
|
|
metrics.mCumulativeResolution = LayoutDeviceToLayerScale(2);
|
|
|
|
metrics.mResolution = ParentLayerToLayerScale(2);
|
2013-08-26 17:50:30 +04:00
|
|
|
metrics.mZoom = CSSToScreenScale(6);
|
2013-07-08 23:53:51 +04:00
|
|
|
metrics.mDevPixelsPerCSSPixel = CSSToLayoutDeviceScale(3);
|
2013-11-09 04:07:00 +04:00
|
|
|
metrics.mScrollId = FrameMetrics::START_SCROLL_ID;
|
2013-07-08 23:53:51 +04:00
|
|
|
|
|
|
|
FrameMetrics childMetrics = metrics;
|
2013-11-09 04:07:00 +04:00
|
|
|
childMetrics.mScrollId = FrameMetrics::START_SCROLL_ID + 1;
|
2013-07-08 23:53:51 +04:00
|
|
|
|
|
|
|
layers[0]->AsContainerLayer()->SetFrameMetrics(metrics);
|
|
|
|
layers[1]->AsContainerLayer()->SetFrameMetrics(childMetrics);
|
|
|
|
|
|
|
|
ScreenPoint pointOut;
|
|
|
|
ViewTransform viewTransformOut;
|
|
|
|
|
|
|
|
// Both the parent and child layer should behave exactly the same here, because
|
|
|
|
// the CSS transform on the child layer does not affect the SampleContentTransformForFrame code
|
|
|
|
|
|
|
|
// initial transform
|
2013-07-30 22:03:40 +04:00
|
|
|
apzc->SetFrameMetrics(metrics);
|
2013-07-08 23:53:51 +04:00
|
|
|
apzc->NotifyLayersUpdated(metrics, true);
|
2013-07-30 22:03:41 +04:00
|
|
|
apzc->SampleContentTransformForFrame(testStartTime, &viewTransformOut, pointOut);
|
2013-09-06 02:26:59 +04:00
|
|
|
EXPECT_EQ(ViewTransform(LayerPoint(), ParentLayerToScreenScale(2)), viewTransformOut);
|
2013-07-08 23:53:51 +04:00
|
|
|
EXPECT_EQ(ScreenPoint(60, 60), pointOut);
|
|
|
|
|
2013-07-30 22:03:40 +04:00
|
|
|
childApzc->SetFrameMetrics(childMetrics);
|
|
|
|
childApzc->NotifyLayersUpdated(childMetrics, true);
|
2013-07-30 22:03:41 +04:00
|
|
|
childApzc->SampleContentTransformForFrame(testStartTime, &viewTransformOut, pointOut);
|
2013-09-06 02:26:59 +04:00
|
|
|
EXPECT_EQ(ViewTransform(LayerPoint(), ParentLayerToScreenScale(2)), viewTransformOut);
|
2013-07-08 23:53:51 +04:00
|
|
|
EXPECT_EQ(ScreenPoint(60, 60), pointOut);
|
|
|
|
|
|
|
|
// do an async scroll by 5 pixels and check the transform
|
|
|
|
metrics.mScrollOffset += CSSPoint(5, 0);
|
2013-07-30 22:03:40 +04:00
|
|
|
apzc->SetFrameMetrics(metrics);
|
2013-07-30 22:03:41 +04:00
|
|
|
apzc->SampleContentTransformForFrame(testStartTime, &viewTransformOut, pointOut);
|
2013-09-06 02:26:59 +04:00
|
|
|
EXPECT_EQ(ViewTransform(LayerPoint(-30, 0), ParentLayerToScreenScale(2)), viewTransformOut);
|
2013-07-08 23:53:51 +04:00
|
|
|
EXPECT_EQ(ScreenPoint(90, 60), pointOut);
|
|
|
|
|
|
|
|
childMetrics.mScrollOffset += CSSPoint(5, 0);
|
2013-07-30 22:03:40 +04:00
|
|
|
childApzc->SetFrameMetrics(childMetrics);
|
2013-07-30 22:03:41 +04:00
|
|
|
childApzc->SampleContentTransformForFrame(testStartTime, &viewTransformOut, pointOut);
|
2013-09-06 02:26:59 +04:00
|
|
|
EXPECT_EQ(ViewTransform(LayerPoint(-30, 0), ParentLayerToScreenScale(2)), viewTransformOut);
|
2013-07-08 23:53:51 +04:00
|
|
|
EXPECT_EQ(ScreenPoint(90, 60), pointOut);
|
|
|
|
|
|
|
|
// do an async zoom of 1.5x and check the transform
|
|
|
|
metrics.mZoom.scale *= 1.5f;
|
2013-07-30 22:03:40 +04:00
|
|
|
apzc->SetFrameMetrics(metrics);
|
2013-07-30 22:03:41 +04:00
|
|
|
apzc->SampleContentTransformForFrame(testStartTime, &viewTransformOut, pointOut);
|
2013-09-06 02:26:59 +04:00
|
|
|
EXPECT_EQ(ViewTransform(LayerPoint(-30, 0), ParentLayerToScreenScale(3)), viewTransformOut);
|
2013-07-08 23:53:51 +04:00
|
|
|
EXPECT_EQ(ScreenPoint(135, 90), pointOut);
|
|
|
|
|
|
|
|
childMetrics.mZoom.scale *= 1.5f;
|
2013-07-30 22:03:40 +04:00
|
|
|
childApzc->SetFrameMetrics(childMetrics);
|
2013-07-30 22:03:41 +04:00
|
|
|
childApzc->SampleContentTransformForFrame(testStartTime, &viewTransformOut, pointOut);
|
2013-09-06 02:26:59 +04:00
|
|
|
EXPECT_EQ(ViewTransform(LayerPoint(-30, 0), ParentLayerToScreenScale(3)), viewTransformOut);
|
2013-07-08 23:53:51 +04:00
|
|
|
EXPECT_EQ(ScreenPoint(135, 90), pointOut);
|
|
|
|
}
|
|
|
|
|
2013-06-24 23:24:42 +04:00
|
|
|
TEST(AsyncPanZoomController, Pan) {
|
2014-01-15 19:03:16 +04:00
|
|
|
DoPanTest(true, false, mozilla::layers::AllowedTouchBehavior::NONE);
|
|
|
|
}
|
2013-06-24 23:24:42 +04:00
|
|
|
|
2014-01-15 19:03:16 +04:00
|
|
|
// In the each of the following 4 pan tests we are performing two pan gestures: vertical pan from top
|
|
|
|
// to bottom and back - from bottom to top.
|
|
|
|
// According to the pointer-events/touch-action spec AUTO and PAN_Y touch-action values allow vertical
|
|
|
|
// scrolling while NONE and PAN_X forbid it. The first parameter of DoPanTest method specifies this
|
|
|
|
// behavior.
|
|
|
|
TEST(AsyncPanZoomController, PanWithTouchActionAuto) {
|
|
|
|
DoPanTest(true, true,
|
|
|
|
mozilla::layers::AllowedTouchBehavior::HORIZONTAL_PAN | mozilla::layers::AllowedTouchBehavior::VERTICAL_PAN);
|
|
|
|
}
|
2013-06-24 23:24:42 +04:00
|
|
|
|
2014-01-15 19:03:16 +04:00
|
|
|
TEST(AsyncPanZoomController, PanWithTouchActionNone) {
|
|
|
|
DoPanTest(false, true, 0);
|
|
|
|
}
|
2013-06-24 23:24:42 +04:00
|
|
|
|
2014-01-15 19:03:16 +04:00
|
|
|
TEST(AsyncPanZoomController, PanWithTouchActionPanX) {
|
|
|
|
DoPanTest(false, true, mozilla::layers::AllowedTouchBehavior::HORIZONTAL_PAN);
|
|
|
|
}
|
2013-06-24 23:24:42 +04:00
|
|
|
|
2014-01-15 19:03:16 +04:00
|
|
|
TEST(AsyncPanZoomController, PanWithTouchActionPanY) {
|
|
|
|
DoPanTest(true, true, mozilla::layers::AllowedTouchBehavior::VERTICAL_PAN);
|
2013-06-24 23:24:42 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(AsyncPanZoomController, Fling) {
|
|
|
|
TimeStamp testStartTime = TimeStamp::Now();
|
|
|
|
AsyncPanZoomController::SetFrameTime(testStartTime);
|
|
|
|
|
2013-11-19 05:54:22 +04:00
|
|
|
nsRefPtr<MockContentController> mcc = new NiceMock<MockContentController>();
|
2013-11-30 01:40:21 +04:00
|
|
|
nsRefPtr<TestAPZCTreeManager> tm = new TestAPZCTreeManager();
|
|
|
|
nsRefPtr<TestAsyncPanZoomController> apzc = new TestAsyncPanZoomController(0, mcc, tm);
|
2013-07-30 22:03:40 +04:00
|
|
|
|
|
|
|
apzc->SetFrameMetrics(TestFrameMetrics());
|
2013-06-24 23:24:42 +04:00
|
|
|
apzc->NotifyLayersUpdated(TestFrameMetrics(), true);
|
|
|
|
|
2013-12-07 21:45:19 +04:00
|
|
|
EXPECT_CALL(*mcc, SendAsyncScrollDOMEvent(_,_,_)).Times(AtLeast(1));
|
2013-06-24 23:24:42 +04:00
|
|
|
EXPECT_CALL(*mcc, RequestContentRepaint(_)).Times(1);
|
|
|
|
|
|
|
|
int time = 0;
|
|
|
|
int touchStart = 50;
|
|
|
|
int touchEnd = 10;
|
|
|
|
ScreenPoint pointOut;
|
|
|
|
ViewTransform viewTransformOut;
|
|
|
|
|
|
|
|
// Fling down. Each step scroll further down
|
2013-11-30 01:40:21 +04:00
|
|
|
ApzcPan(apzc, tm, time, touchStart, touchEnd);
|
2013-06-24 23:24:42 +04:00
|
|
|
ScreenPoint lastPoint;
|
|
|
|
for (int i = 1; i < 50; i+=1) {
|
2013-07-30 22:03:41 +04:00
|
|
|
apzc->SampleContentTransformForFrame(testStartTime+TimeDuration::FromMilliseconds(i), &viewTransformOut, pointOut);
|
2013-06-24 23:24:42 +04:00
|
|
|
EXPECT_GT(pointOut.y, lastPoint.y);
|
|
|
|
lastPoint = pointOut;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(AsyncPanZoomController, OverScrollPanning) {
|
|
|
|
TimeStamp testStartTime = TimeStamp::Now();
|
|
|
|
AsyncPanZoomController::SetFrameTime(testStartTime);
|
|
|
|
|
2013-11-19 05:54:22 +04:00
|
|
|
nsRefPtr<MockContentController> mcc = new NiceMock<MockContentController>();
|
2013-11-30 01:40:21 +04:00
|
|
|
nsRefPtr<TestAPZCTreeManager> tm = new TestAPZCTreeManager();
|
|
|
|
nsRefPtr<TestAsyncPanZoomController> apzc = new TestAsyncPanZoomController(0, mcc, tm);
|
2013-07-30 22:03:40 +04:00
|
|
|
|
|
|
|
apzc->SetFrameMetrics(TestFrameMetrics());
|
2013-06-24 23:24:42 +04:00
|
|
|
apzc->NotifyLayersUpdated(TestFrameMetrics(), true);
|
|
|
|
|
2013-12-07 21:45:19 +04:00
|
|
|
EXPECT_CALL(*mcc, SendAsyncScrollDOMEvent(_,_,_)).Times(AtLeast(1));
|
2013-06-24 23:24:42 +04:00
|
|
|
EXPECT_CALL(*mcc, RequestContentRepaint(_)).Times(1);
|
|
|
|
|
|
|
|
// Pan sufficiently to hit overscroll behavior
|
|
|
|
int time = 0;
|
|
|
|
int touchStart = 500;
|
|
|
|
int touchEnd = 10;
|
|
|
|
ScreenPoint pointOut;
|
|
|
|
ViewTransform viewTransformOut;
|
|
|
|
|
|
|
|
// Pan down
|
2013-11-30 01:40:21 +04:00
|
|
|
ApzcPan(apzc, tm, time, touchStart, touchEnd);
|
2013-07-30 22:03:41 +04:00
|
|
|
apzc->SampleContentTransformForFrame(testStartTime+TimeDuration::FromMilliseconds(1000), &viewTransformOut, pointOut);
|
2013-06-24 23:24:42 +04:00
|
|
|
EXPECT_EQ(pointOut, ScreenPoint(0, 90));
|
|
|
|
}
|
|
|
|
|
2013-12-11 21:19:33 +04:00
|
|
|
TEST(AsyncPanZoomController, ShortPress) {
|
2014-02-11 19:42:42 +04:00
|
|
|
nsRefPtr<MockContentControllerDelayed> mcc = new NiceMock<MockContentControllerDelayed>();
|
2013-12-11 21:19:33 +04:00
|
|
|
nsRefPtr<TestAPZCTreeManager> tm = new TestAPZCTreeManager();
|
|
|
|
nsRefPtr<TestAsyncPanZoomController> apzc = new TestAsyncPanZoomController(
|
|
|
|
0, mcc, tm, AsyncPanZoomController::USE_GESTURE_DETECTOR);
|
|
|
|
|
|
|
|
apzc->SetFrameMetrics(TestFrameMetrics());
|
|
|
|
apzc->NotifyLayersUpdated(TestFrameMetrics(), true);
|
2014-01-06 22:26:44 +04:00
|
|
|
apzc->UpdateZoomConstraints(ZoomConstraints(false, CSSToScreenScale(1.0), CSSToScreenScale(1.0)));
|
2013-12-11 21:19:33 +04:00
|
|
|
|
|
|
|
int time = 0;
|
2014-02-11 19:42:42 +04:00
|
|
|
nsEventStatus status = ApzcTap(apzc, 10, 10, time, 100, mcc.get());
|
2013-12-11 21:19:33 +04:00
|
|
|
EXPECT_EQ(nsEventStatus_eIgnore, status);
|
|
|
|
|
2014-02-11 19:42:42 +04:00
|
|
|
// This verifies that the single tap notification is sent after the
|
|
|
|
// touchdown is fully processed. The ordering here is important.
|
|
|
|
mcc->CheckHasDelayedTask();
|
|
|
|
|
|
|
|
EXPECT_CALL(*mcc, HandleSingleTap(CSSIntPoint(10, 10), 0, apzc->GetGuid())).Times(1);
|
|
|
|
mcc->RunDelayedTask();
|
|
|
|
|
2013-12-11 21:19:33 +04:00
|
|
|
apzc->Destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(AsyncPanZoomController, MediumPress) {
|
2014-02-11 19:42:42 +04:00
|
|
|
nsRefPtr<MockContentControllerDelayed> mcc = new NiceMock<MockContentControllerDelayed>();
|
2013-12-11 21:19:33 +04:00
|
|
|
nsRefPtr<TestAPZCTreeManager> tm = new TestAPZCTreeManager();
|
|
|
|
nsRefPtr<TestAsyncPanZoomController> apzc = new TestAsyncPanZoomController(
|
|
|
|
0, mcc, tm, AsyncPanZoomController::USE_GESTURE_DETECTOR);
|
|
|
|
|
|
|
|
apzc->SetFrameMetrics(TestFrameMetrics());
|
|
|
|
apzc->NotifyLayersUpdated(TestFrameMetrics(), true);
|
2014-01-06 22:26:44 +04:00
|
|
|
apzc->UpdateZoomConstraints(ZoomConstraints(false, CSSToScreenScale(1.0), CSSToScreenScale(1.0)));
|
2013-12-11 21:19:33 +04:00
|
|
|
|
|
|
|
int time = 0;
|
2014-02-11 19:42:42 +04:00
|
|
|
nsEventStatus status = ApzcTap(apzc, 10, 10, time, 400, mcc.get());
|
2013-12-11 21:19:33 +04:00
|
|
|
EXPECT_EQ(nsEventStatus_eIgnore, status);
|
|
|
|
|
2014-02-11 19:42:42 +04:00
|
|
|
// This verifies that the single tap notification is sent after the
|
|
|
|
// touchdown is fully processed. The ordering here is important.
|
|
|
|
mcc->CheckHasDelayedTask();
|
|
|
|
|
|
|
|
EXPECT_CALL(*mcc, HandleSingleTap(CSSIntPoint(10, 10), 0, apzc->GetGuid())).Times(1);
|
|
|
|
mcc->RunDelayedTask();
|
|
|
|
|
2013-12-11 21:19:33 +04:00
|
|
|
apzc->Destroy();
|
|
|
|
}
|
|
|
|
|
2013-12-12 04:39:06 +04:00
|
|
|
TEST(AsyncPanZoomController, LongPress) {
|
|
|
|
nsRefPtr<MockContentControllerDelayed> mcc = new MockContentControllerDelayed();
|
|
|
|
nsRefPtr<TestAPZCTreeManager> tm = new TestAPZCTreeManager();
|
|
|
|
nsRefPtr<TestAsyncPanZoomController> apzc = new TestAsyncPanZoomController(
|
|
|
|
0, mcc, tm, AsyncPanZoomController::USE_GESTURE_DETECTOR);
|
|
|
|
|
|
|
|
apzc->SetFrameMetrics(TestFrameMetrics());
|
|
|
|
apzc->NotifyLayersUpdated(TestFrameMetrics(), true);
|
2014-01-06 22:26:44 +04:00
|
|
|
apzc->UpdateZoomConstraints(ZoomConstraints(false, CSSToScreenScale(1.0), CSSToScreenScale(1.0)));
|
2013-12-12 04:39:06 +04:00
|
|
|
|
|
|
|
int time = 0;
|
|
|
|
|
|
|
|
nsEventStatus status = ApzcDown(apzc, 10, 10, time);
|
|
|
|
EXPECT_EQ(nsEventStatus_eConsumeNoDefault, status);
|
|
|
|
|
2014-02-11 19:42:42 +04:00
|
|
|
mcc->CheckHasDelayedTask();
|
2014-02-15 08:55:41 +04:00
|
|
|
EXPECT_CALL(*mcc, HandleLongTap(CSSIntPoint(10, 10), 0, apzc->GetGuid())).Times(1);
|
2013-12-12 04:39:06 +04:00
|
|
|
|
|
|
|
// Manually invoke the longpress while the touch is currently down.
|
2014-02-11 19:42:42 +04:00
|
|
|
mcc->RunDelayedTask();
|
2013-12-12 04:39:06 +04:00
|
|
|
|
|
|
|
time += 1000;
|
|
|
|
|
|
|
|
status = ApzcUp(apzc, 10, 10, time);
|
|
|
|
EXPECT_EQ(nsEventStatus_eIgnore, status);
|
|
|
|
|
2014-02-15 08:55:41 +04:00
|
|
|
EXPECT_CALL(*mcc, HandleLongTapUp(CSSIntPoint(10, 10), 0, apzc->GetGuid())).Times(1);
|
|
|
|
|
2014-02-06 19:34:39 +04:00
|
|
|
// To get a LongTapUp event, we must kick APZC to flush its event queue. This
|
|
|
|
// would normally happen if we had a (Tab|RenderFrame)(Parent|Child)
|
|
|
|
// mechanism.
|
|
|
|
apzc->ContentReceivedTouch(false);
|
|
|
|
|
2013-12-12 04:39:06 +04:00
|
|
|
apzc->Destroy();
|
|
|
|
}
|
|
|
|
|
2013-10-30 23:58:25 +04:00
|
|
|
// Layer tree for HitTesting1
|
2013-07-02 20:27:17 +04:00
|
|
|
static already_AddRefed<mozilla::layers::Layer>
|
2013-10-30 23:58:25 +04:00
|
|
|
CreateTestLayerTree1(nsRefPtr<LayerManager>& aLayerManager, nsTArray<nsRefPtr<Layer> >& aLayers) {
|
|
|
|
const char* layerTreeSyntax = "c(ttcc)";
|
|
|
|
// LayerID 0 1234
|
2013-07-02 20:27:17 +04:00
|
|
|
nsIntRegion layerVisibleRegion[] = {
|
|
|
|
nsIntRegion(nsIntRect(0,0,100,100)),
|
|
|
|
nsIntRegion(nsIntRect(0,0,100,100)),
|
|
|
|
nsIntRegion(nsIntRect(10,10,20,20)),
|
|
|
|
nsIntRegion(nsIntRect(10,10,20,20)),
|
|
|
|
nsIntRegion(nsIntRect(5,5,20,20)),
|
|
|
|
};
|
|
|
|
gfx3DMatrix transforms[] = {
|
|
|
|
gfx3DMatrix(),
|
|
|
|
gfx3DMatrix(),
|
|
|
|
gfx3DMatrix(),
|
|
|
|
gfx3DMatrix(),
|
|
|
|
gfx3DMatrix(),
|
2013-10-30 23:58:25 +04:00
|
|
|
};
|
|
|
|
return CreateLayerTree(layerTreeSyntax, layerVisibleRegion, transforms, aLayerManager, aLayers);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Layer Tree for HitTesting2
|
|
|
|
static already_AddRefed<mozilla::layers::Layer>
|
|
|
|
CreateTestLayerTree2(nsRefPtr<LayerManager>& aLayerManager, nsTArray<nsRefPtr<Layer> >& aLayers) {
|
|
|
|
const char* layerTreeSyntax = "c(cc(c))";
|
|
|
|
// LayerID 0 12 3
|
|
|
|
nsIntRegion layerVisibleRegion[] = {
|
|
|
|
nsIntRegion(nsIntRect(0,0,100,100)),
|
|
|
|
nsIntRegion(nsIntRect(10,10,40,40)),
|
|
|
|
nsIntRegion(nsIntRect(10,60,40,40)),
|
|
|
|
nsIntRegion(nsIntRect(10,60,40,40)),
|
|
|
|
};
|
|
|
|
gfx3DMatrix transforms[] = {
|
|
|
|
gfx3DMatrix(),
|
2013-07-02 20:27:17 +04:00
|
|
|
gfx3DMatrix(),
|
|
|
|
gfx3DMatrix(),
|
|
|
|
gfx3DMatrix(),
|
|
|
|
};
|
|
|
|
return CreateLayerTree(layerTreeSyntax, layerVisibleRegion, transforms, aLayerManager, aLayers);
|
|
|
|
}
|
|
|
|
|
2013-07-30 22:03:41 +04:00
|
|
|
static void
|
2013-10-30 23:58:25 +04:00
|
|
|
SetScrollableFrameMetrics(Layer* aLayer, FrameMetrics::ViewID aScrollId,
|
|
|
|
// The scrollable rect is only used in HitTesting2,
|
|
|
|
// HitTesting1 doesn't care about it.
|
|
|
|
CSSRect aScrollableRect = CSSRect(-1, -1, -1, -1))
|
2013-07-30 22:03:41 +04:00
|
|
|
{
|
|
|
|
ContainerLayer* container = aLayer->AsContainerLayer();
|
|
|
|
FrameMetrics metrics;
|
|
|
|
metrics.mScrollId = aScrollId;
|
|
|
|
nsIntRect layerBound = aLayer->GetVisibleRegion().GetBounds();
|
|
|
|
metrics.mCompositionBounds = ScreenIntRect(layerBound.x, layerBound.y,
|
|
|
|
layerBound.width, layerBound.height);
|
2013-10-30 23:58:25 +04:00
|
|
|
metrics.mScrollableRect = aScrollableRect;
|
|
|
|
metrics.mScrollOffset = CSSPoint(0, 0);
|
2013-07-30 22:03:41 +04:00
|
|
|
container->SetFrameMetrics(metrics);
|
|
|
|
}
|
|
|
|
|
2013-08-21 20:03:03 +04:00
|
|
|
static already_AddRefed<AsyncPanZoomController>
|
|
|
|
GetTargetAPZC(APZCTreeManager* manager, const ScreenPoint& aPoint,
|
2013-10-31 22:44:33 +04:00
|
|
|
gfx3DMatrix& aTransformToApzcOut, gfx3DMatrix& aTransformToGeckoOut)
|
2013-08-21 20:03:03 +04:00
|
|
|
{
|
|
|
|
nsRefPtr<AsyncPanZoomController> hit = manager->GetTargetAPZC(aPoint);
|
|
|
|
if (hit) {
|
2013-10-31 22:44:33 +04:00
|
|
|
manager->GetInputTransforms(hit.get(), aTransformToApzcOut, aTransformToGeckoOut);
|
2013-08-21 20:03:03 +04:00
|
|
|
}
|
|
|
|
return hit.forget();
|
|
|
|
}
|
|
|
|
|
2013-10-30 23:58:25 +04:00
|
|
|
// A simple hit testing test that doesn't involve any transforms on layers.
|
|
|
|
TEST(APZCTreeManager, HitTesting1) {
|
2013-07-30 22:03:41 +04:00
|
|
|
nsTArray<nsRefPtr<Layer> > layers;
|
|
|
|
nsRefPtr<LayerManager> lm;
|
2013-10-30 23:58:25 +04:00
|
|
|
nsRefPtr<Layer> root = CreateTestLayerTree1(lm, layers);
|
2013-07-30 22:03:41 +04:00
|
|
|
|
|
|
|
TimeStamp testStartTime = TimeStamp::Now();
|
|
|
|
AsyncPanZoomController::SetFrameTime(testStartTime);
|
2013-11-19 05:54:22 +04:00
|
|
|
nsRefPtr<MockContentController> mcc = new NiceMock<MockContentController>();
|
2013-07-30 22:03:43 +04:00
|
|
|
ScopedLayerTreeRegistration controller(0, root, mcc);
|
2013-07-30 22:03:41 +04:00
|
|
|
|
|
|
|
nsRefPtr<APZCTreeManager> manager = new TestAPZCTreeManager();
|
2013-08-15 16:03:31 +04:00
|
|
|
gfx3DMatrix transformToApzc;
|
2013-10-31 22:44:33 +04:00
|
|
|
gfx3DMatrix transformToGecko;
|
2013-07-30 22:03:41 +04:00
|
|
|
|
|
|
|
// No APZC attached so hit testing will return no APZC at (20,20)
|
2013-10-31 22:44:33 +04:00
|
|
|
nsRefPtr<AsyncPanZoomController> hit = GetTargetAPZC(manager, ScreenPoint(20, 20), transformToApzc, transformToGecko);
|
2013-07-30 22:03:41 +04:00
|
|
|
AsyncPanZoomController* nullAPZC = nullptr;
|
|
|
|
EXPECT_EQ(nullAPZC, hit.get());
|
2013-08-15 16:03:31 +04:00
|
|
|
EXPECT_EQ(gfx3DMatrix(), transformToApzc);
|
2013-10-31 22:44:33 +04:00
|
|
|
EXPECT_EQ(gfx3DMatrix(), transformToGecko);
|
2013-07-30 22:03:41 +04:00
|
|
|
|
|
|
|
// Now we have a root APZC that will match the page
|
2013-11-09 04:07:00 +04:00
|
|
|
SetScrollableFrameMetrics(root, FrameMetrics::START_SCROLL_ID);
|
2013-10-30 23:58:25 +04:00
|
|
|
manager->UpdatePanZoomControllerTree(nullptr, root, false, 0);
|
2013-10-31 22:44:33 +04:00
|
|
|
hit = GetTargetAPZC(manager, ScreenPoint(15, 15), transformToApzc, transformToGecko);
|
2013-07-30 22:03:41 +04:00
|
|
|
EXPECT_EQ(root->AsContainerLayer()->GetAsyncPanZoomController(), hit.get());
|
|
|
|
// expect hit point at LayerIntPoint(15, 15)
|
2013-08-15 16:03:31 +04:00
|
|
|
EXPECT_EQ(gfxPoint(15, 15), transformToApzc.Transform(gfxPoint(15, 15)));
|
2013-10-31 22:44:33 +04:00
|
|
|
EXPECT_EQ(gfxPoint(15, 15), transformToGecko.Transform(gfxPoint(15, 15)));
|
2013-07-30 22:03:41 +04:00
|
|
|
|
|
|
|
// Now we have a sub APZC with a better fit
|
2013-11-09 04:07:00 +04:00
|
|
|
SetScrollableFrameMetrics(layers[3], FrameMetrics::START_SCROLL_ID + 1);
|
2013-10-30 23:58:25 +04:00
|
|
|
manager->UpdatePanZoomControllerTree(nullptr, root, false, 0);
|
2013-07-30 22:03:41 +04:00
|
|
|
EXPECT_NE(root->AsContainerLayer()->GetAsyncPanZoomController(), layers[3]->AsContainerLayer()->GetAsyncPanZoomController());
|
2013-10-31 22:44:33 +04:00
|
|
|
hit = GetTargetAPZC(manager, ScreenPoint(15, 15), transformToApzc, transformToGecko);
|
2013-07-30 22:03:41 +04:00
|
|
|
EXPECT_EQ(layers[3]->AsContainerLayer()->GetAsyncPanZoomController(), hit.get());
|
|
|
|
// expect hit point at LayerIntPoint(15, 15)
|
2013-08-15 16:03:31 +04:00
|
|
|
EXPECT_EQ(gfxPoint(15, 15), transformToApzc.Transform(gfxPoint(15, 15)));
|
2013-10-31 22:44:33 +04:00
|
|
|
EXPECT_EQ(gfxPoint(15, 15), transformToGecko.Transform(gfxPoint(15, 15)));
|
2013-07-30 22:03:41 +04:00
|
|
|
|
|
|
|
// Now test hit testing when we have two scrollable layers
|
2013-10-31 22:44:33 +04:00
|
|
|
hit = GetTargetAPZC(manager, ScreenPoint(15, 15), transformToApzc, transformToGecko);
|
2013-07-30 22:03:41 +04:00
|
|
|
EXPECT_EQ(layers[3]->AsContainerLayer()->GetAsyncPanZoomController(), hit.get());
|
2013-11-09 04:07:00 +04:00
|
|
|
SetScrollableFrameMetrics(layers[4], FrameMetrics::START_SCROLL_ID + 2);
|
2013-10-30 23:58:25 +04:00
|
|
|
manager->UpdatePanZoomControllerTree(nullptr, root, false, 0);
|
2013-10-31 22:44:33 +04:00
|
|
|
hit = GetTargetAPZC(manager, ScreenPoint(15, 15), transformToApzc, transformToGecko);
|
2013-07-30 22:03:41 +04:00
|
|
|
EXPECT_EQ(layers[4]->AsContainerLayer()->GetAsyncPanZoomController(), hit.get());
|
|
|
|
// expect hit point at LayerIntPoint(15, 15)
|
2013-08-15 16:03:31 +04:00
|
|
|
EXPECT_EQ(gfxPoint(15, 15), transformToApzc.Transform(gfxPoint(15, 15)));
|
2013-10-31 22:44:33 +04:00
|
|
|
EXPECT_EQ(gfxPoint(15, 15), transformToGecko.Transform(gfxPoint(15, 15)));
|
2013-07-30 22:03:41 +04:00
|
|
|
|
|
|
|
// Hit test ouside the reach of layer[3,4] but inside root
|
2013-10-31 22:44:33 +04:00
|
|
|
hit = GetTargetAPZC(manager, ScreenPoint(90, 90), transformToApzc, transformToGecko);
|
2013-07-30 22:03:41 +04:00
|
|
|
EXPECT_EQ(root->AsContainerLayer()->GetAsyncPanZoomController(), hit.get());
|
|
|
|
// expect hit point at LayerIntPoint(90, 90)
|
2013-08-15 16:03:31 +04:00
|
|
|
EXPECT_EQ(gfxPoint(90, 90), transformToApzc.Transform(gfxPoint(90, 90)));
|
2013-10-31 22:44:33 +04:00
|
|
|
EXPECT_EQ(gfxPoint(90, 90), transformToGecko.Transform(gfxPoint(90, 90)));
|
2013-07-30 22:03:41 +04:00
|
|
|
|
|
|
|
// Hit test ouside the reach of any layer
|
2013-10-31 22:44:33 +04:00
|
|
|
hit = GetTargetAPZC(manager, ScreenPoint(1000, 10), transformToApzc, transformToGecko);
|
2013-07-30 22:03:41 +04:00
|
|
|
EXPECT_EQ(nullAPZC, hit.get());
|
2013-08-15 16:03:31 +04:00
|
|
|
EXPECT_EQ(gfx3DMatrix(), transformToApzc);
|
2013-10-31 22:44:33 +04:00
|
|
|
EXPECT_EQ(gfx3DMatrix(), transformToGecko);
|
|
|
|
hit = GetTargetAPZC(manager, ScreenPoint(-1000, 10), transformToApzc, transformToGecko);
|
2013-07-30 22:03:41 +04:00
|
|
|
EXPECT_EQ(nullAPZC, hit.get());
|
2013-08-15 16:03:31 +04:00
|
|
|
EXPECT_EQ(gfx3DMatrix(), transformToApzc);
|
2013-10-31 22:44:33 +04:00
|
|
|
EXPECT_EQ(gfx3DMatrix(), transformToGecko);
|
2013-07-30 22:03:41 +04:00
|
|
|
|
2013-10-30 23:58:25 +04:00
|
|
|
manager->ClearTree();
|
|
|
|
}
|
2013-07-30 22:03:41 +04:00
|
|
|
|
2013-10-30 23:58:25 +04:00
|
|
|
// A more involved hit testing test that involves css and async transforms.
|
|
|
|
TEST(APZCTreeManager, HitTesting2) {
|
|
|
|
nsTArray<nsRefPtr<Layer> > layers;
|
|
|
|
nsRefPtr<LayerManager> lm;
|
|
|
|
nsRefPtr<Layer> root = CreateTestLayerTree2(lm, layers);
|
2013-07-30 22:03:41 +04:00
|
|
|
|
2013-10-30 23:58:25 +04:00
|
|
|
TimeStamp testStartTime = TimeStamp::Now();
|
|
|
|
AsyncPanZoomController::SetFrameTime(testStartTime);
|
2013-11-19 05:54:22 +04:00
|
|
|
nsRefPtr<MockContentController> mcc = new NiceMock<MockContentController>();
|
2013-10-30 23:58:25 +04:00
|
|
|
ScopedLayerTreeRegistration controller(0, root, mcc);
|
2013-07-30 22:03:41 +04:00
|
|
|
|
2013-11-30 01:40:21 +04:00
|
|
|
nsRefPtr<TestAPZCTreeManager> manager = new TestAPZCTreeManager();
|
2013-10-30 23:58:25 +04:00
|
|
|
nsRefPtr<AsyncPanZoomController> hit;
|
|
|
|
gfx3DMatrix transformToApzc;
|
2013-10-31 22:44:33 +04:00
|
|
|
gfx3DMatrix transformToGecko;
|
2013-07-30 22:03:41 +04:00
|
|
|
|
2013-10-30 23:58:25 +04:00
|
|
|
// Set a CSS transform on one of the layers.
|
2014-01-27 19:28:33 +04:00
|
|
|
Matrix4x4 transform;
|
|
|
|
transform = transform * Matrix4x4().Scale(2, 1, 1);
|
2013-10-30 23:58:25 +04:00
|
|
|
layers[2]->SetBaseTransform(transform);
|
|
|
|
|
|
|
|
// Make some other layers scrollable.
|
2013-11-09 04:07:00 +04:00
|
|
|
SetScrollableFrameMetrics(root, FrameMetrics::START_SCROLL_ID, CSSRect(0, 0, 200, 200));
|
|
|
|
SetScrollableFrameMetrics(layers[1], FrameMetrics::START_SCROLL_ID + 1, CSSRect(0, 0, 80, 80));
|
|
|
|
SetScrollableFrameMetrics(layers[3], FrameMetrics::START_SCROLL_ID + 2, CSSRect(0, 0, 80, 80));
|
2013-10-30 23:58:25 +04:00
|
|
|
|
|
|
|
manager->UpdatePanZoomControllerTree(nullptr, root, false, 0);
|
|
|
|
|
|
|
|
// At this point, the following holds (all coordinates in screen pixels):
|
|
|
|
// layers[0] has content from (0,0)-(200,200), clipped by composition bounds (0,0)-(100,100)
|
|
|
|
// layers[1] has content from (10,10)-(90,90), clipped by composition bounds (10,10)-(50,50)
|
|
|
|
// layers[2] has content from (20,60)-(100,100). no clipping as it's not a scrollable layer
|
|
|
|
// layers[3] has content from (20,60)-(180,140), clipped by composition bounds (20,60)-(100,100)
|
|
|
|
|
|
|
|
AsyncPanZoomController* apzcroot = root->AsContainerLayer()->GetAsyncPanZoomController();
|
|
|
|
AsyncPanZoomController* apzc1 = layers[1]->AsContainerLayer()->GetAsyncPanZoomController();
|
|
|
|
AsyncPanZoomController* apzc3 = layers[3]->AsContainerLayer()->GetAsyncPanZoomController();
|
|
|
|
|
|
|
|
// Hit an area that's clearly on the root layer but not any of the child layers.
|
2013-10-31 22:44:33 +04:00
|
|
|
hit = GetTargetAPZC(manager, ScreenPoint(75, 25), transformToApzc, transformToGecko);
|
2013-10-30 23:58:25 +04:00
|
|
|
EXPECT_EQ(apzcroot, hit.get());
|
|
|
|
EXPECT_EQ(gfxPoint(75, 25), transformToApzc.Transform(gfxPoint(75, 25)));
|
2013-10-31 22:44:33 +04:00
|
|
|
EXPECT_EQ(gfxPoint(75, 25), transformToGecko.Transform(gfxPoint(75, 25)));
|
2013-10-30 23:58:25 +04:00
|
|
|
|
|
|
|
// Hit an area on the root that would be on layers[3] if layers[2]
|
|
|
|
// weren't transformed.
|
|
|
|
// Note that if layers[2] were scrollable, then this would hit layers[2]
|
|
|
|
// because its composition bounds would be at (10,60)-(50,100) (and the
|
|
|
|
// scale-only transform that we set on layers[2] would be invalid because
|
|
|
|
// it would place the layer into overscroll, as its composition bounds
|
|
|
|
// start at x=10 but its content at x=20).
|
2013-10-31 22:44:33 +04:00
|
|
|
hit = GetTargetAPZC(manager, ScreenPoint(15, 75), transformToApzc, transformToGecko);
|
2013-10-30 23:58:25 +04:00
|
|
|
EXPECT_EQ(apzcroot, hit.get());
|
|
|
|
EXPECT_EQ(gfxPoint(15, 75), transformToApzc.Transform(gfxPoint(15, 75)));
|
2013-10-31 22:44:33 +04:00
|
|
|
EXPECT_EQ(gfxPoint(15, 75), transformToGecko.Transform(gfxPoint(15, 75)));
|
2013-10-30 23:58:25 +04:00
|
|
|
|
|
|
|
// Hit an area on layers[1].
|
2013-10-31 22:44:33 +04:00
|
|
|
hit = GetTargetAPZC(manager, ScreenPoint(25, 25), transformToApzc, transformToGecko);
|
2013-10-30 23:58:25 +04:00
|
|
|
EXPECT_EQ(apzc1, hit.get());
|
|
|
|
EXPECT_EQ(gfxPoint(25, 25), transformToApzc.Transform(gfxPoint(25, 25)));
|
2013-10-31 22:44:33 +04:00
|
|
|
EXPECT_EQ(gfxPoint(25, 25), transformToGecko.Transform(gfxPoint(25, 25)));
|
2013-10-30 23:58:25 +04:00
|
|
|
|
|
|
|
// Hit an area on layers[3].
|
2013-10-31 22:44:33 +04:00
|
|
|
hit = GetTargetAPZC(manager, ScreenPoint(25, 75), transformToApzc, transformToGecko);
|
2013-10-30 23:58:25 +04:00
|
|
|
EXPECT_EQ(apzc3, hit.get());
|
|
|
|
// transformToApzc should unapply layers[2]'s transform
|
|
|
|
EXPECT_EQ(gfxPoint(12.5, 75), transformToApzc.Transform(gfxPoint(25, 75)));
|
2013-10-31 22:44:33 +04:00
|
|
|
// and transformToGecko should reapply it
|
|
|
|
EXPECT_EQ(gfxPoint(25, 75), transformToGecko.Transform(gfxPoint(12.5, 75)));
|
2013-10-30 23:58:25 +04:00
|
|
|
|
|
|
|
// Hit an area on layers[3] that would be on the root if layers[2]
|
|
|
|
// weren't transformed.
|
2013-10-31 22:44:33 +04:00
|
|
|
hit = GetTargetAPZC(manager, ScreenPoint(75, 75), transformToApzc, transformToGecko);
|
2013-10-30 23:58:25 +04:00
|
|
|
EXPECT_EQ(apzc3, hit.get());
|
|
|
|
// transformToApzc should unapply layers[2]'s transform
|
|
|
|
EXPECT_EQ(gfxPoint(37.5, 75), transformToApzc.Transform(gfxPoint(75, 75)));
|
2013-10-31 22:44:33 +04:00
|
|
|
// and transformToGecko should reapply it
|
|
|
|
EXPECT_EQ(gfxPoint(75, 75), transformToGecko.Transform(gfxPoint(37.5, 75)));
|
2013-10-30 23:58:25 +04:00
|
|
|
|
|
|
|
// Pan the root layer upward by 50 pixels.
|
|
|
|
// This causes layers[1] to scroll out of view, and an async transform
|
|
|
|
// of -50 to be set on the root layer.
|
|
|
|
int time = 0;
|
|
|
|
// Silence GMock warnings about "uninteresting mock function calls".
|
2014-01-22 22:37:30 +04:00
|
|
|
EXPECT_CALL(*mcc, PostDelayedTask(_,_)).Times(AtLeast(1));
|
2013-12-07 21:45:19 +04:00
|
|
|
EXPECT_CALL(*mcc, SendAsyncScrollDOMEvent(_,_,_)).Times(AtLeast(1));
|
2013-10-30 23:58:25 +04:00
|
|
|
EXPECT_CALL(*mcc, RequestContentRepaint(_)).Times(1);
|
2014-01-22 22:37:30 +04:00
|
|
|
|
|
|
|
// This first pan will move the APZC by 50 pixels, and dispatch a paint request.
|
|
|
|
// Since this paint request is in the queue to Gecko, transformToGecko will
|
|
|
|
// take it into account.
|
2013-11-30 01:40:21 +04:00
|
|
|
ApzcPan(apzcroot, manager, time, 100, 50);
|
2013-10-30 23:58:25 +04:00
|
|
|
|
|
|
|
// Hit where layers[3] used to be. It should now hit the root.
|
2013-10-31 22:44:33 +04:00
|
|
|
hit = GetTargetAPZC(manager, ScreenPoint(75, 75), transformToApzc, transformToGecko);
|
2013-10-30 23:58:25 +04:00
|
|
|
EXPECT_EQ(apzcroot, hit.get());
|
|
|
|
// transformToApzc doesn't unapply the root's own async transform
|
|
|
|
EXPECT_EQ(gfxPoint(75, 75), transformToApzc.Transform(gfxPoint(75, 75)));
|
2014-01-22 22:37:30 +04:00
|
|
|
// and transformToGecko unapplies it and then reapplies it, because by the
|
|
|
|
// time the event being transformed reaches Gecko the new paint request will
|
|
|
|
// have been handled.
|
|
|
|
EXPECT_EQ(gfxPoint(75, 75), transformToGecko.Transform(gfxPoint(75, 75)));
|
2013-10-30 23:58:25 +04:00
|
|
|
|
|
|
|
// Hit where layers[1] used to be and where layers[3] should now be.
|
2013-10-31 22:44:33 +04:00
|
|
|
hit = GetTargetAPZC(manager, ScreenPoint(25, 25), transformToApzc, transformToGecko);
|
2013-10-30 23:58:25 +04:00
|
|
|
EXPECT_EQ(apzc3, hit.get());
|
|
|
|
// transformToApzc unapplies both layers[2]'s css transform and the root's
|
2014-01-22 22:37:30 +04:00
|
|
|
// async transform
|
2013-10-30 23:58:25 +04:00
|
|
|
EXPECT_EQ(gfxPoint(12.5, 75), transformToApzc.Transform(gfxPoint(25, 25)));
|
2014-01-22 22:37:30 +04:00
|
|
|
// transformToGecko reapplies both the css transform and the async transform
|
|
|
|
// because we have already issued a paint request with it.
|
|
|
|
EXPECT_EQ(gfxPoint(25, 25), transformToGecko.Transform(gfxPoint(12.5, 75)));
|
|
|
|
|
|
|
|
// This second pan will move the APZC by another 50 pixels but since the paint
|
|
|
|
// request dispatched above has not "completed", we will not dispatch another
|
|
|
|
// one yet. Now we have an async transform on top of the pending paint request
|
|
|
|
// transform.
|
|
|
|
ApzcPan(apzcroot, manager, time, 100, 50);
|
|
|
|
|
|
|
|
// Hit where layers[3] used to be. It should now hit the root.
|
|
|
|
hit = GetTargetAPZC(manager, ScreenPoint(75, 75), transformToApzc, transformToGecko);
|
|
|
|
EXPECT_EQ(apzcroot, hit.get());
|
|
|
|
// transformToApzc doesn't unapply the root's own async transform
|
|
|
|
EXPECT_EQ(gfxPoint(75, 75), transformToApzc.Transform(gfxPoint(75, 75)));
|
|
|
|
// transformToGecko unapplies the full async transform of -100 pixels, and then
|
|
|
|
// reapplies the "D" transform of -50 leading to an overall adjustment of +50
|
|
|
|
EXPECT_EQ(gfxPoint(75, 125), transformToGecko.Transform(gfxPoint(75, 75)));
|
|
|
|
|
|
|
|
// Hit where layers[1] used to be. It should now hit the root.
|
|
|
|
hit = GetTargetAPZC(manager, ScreenPoint(25, 25), transformToApzc, transformToGecko);
|
|
|
|
EXPECT_EQ(apzcroot, hit.get());
|
|
|
|
// transformToApzc doesn't unapply the root's own async transform
|
|
|
|
EXPECT_EQ(gfxPoint(25, 25), transformToApzc.Transform(gfxPoint(25, 25)));
|
|
|
|
// transformToGecko unapplies the full async transform of -100 pixels, and then
|
|
|
|
// reapplies the "D" transform of -50 leading to an overall adjustment of +50
|
|
|
|
EXPECT_EQ(gfxPoint(25, 75), transformToGecko.Transform(gfxPoint(25, 25)));
|
2013-07-30 22:03:41 +04:00
|
|
|
|
|
|
|
manager->ClearTree();
|
2013-10-31 22:44:33 +04:00
|
|
|
}
|