mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
685 lines
28 KiB
C++
685 lines
28 KiB
C++
/* 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"
|
|
|
|
#include "mozilla/Attributes.h"
|
|
#include "mozilla/gfx/Tools.h" // For NudgeToInteger
|
|
#include "mozilla/layers/AsyncCompositionManager.h" // for ViewTransform
|
|
#include "mozilla/layers/AsyncPanZoomController.h"
|
|
#include "mozilla/layers/LayerManagerComposite.h"
|
|
#include "mozilla/layers/GeckoContentController.h"
|
|
#include "mozilla/layers/CompositorParent.h"
|
|
#include "mozilla/layers/APZCTreeManager.h"
|
|
#include "Layers.h"
|
|
#include "TestLayers.h"
|
|
|
|
using namespace mozilla;
|
|
using namespace mozilla::gfx;
|
|
using namespace mozilla::layers;
|
|
using ::testing::_;
|
|
|
|
class MockContentController : public GeckoContentController {
|
|
public:
|
|
MOCK_METHOD1(RequestContentRepaint, void(const FrameMetrics&));
|
|
MOCK_METHOD2(HandleDoubleTap, void(const CSSIntPoint&, int32_t));
|
|
MOCK_METHOD2(HandleSingleTap, void(const CSSIntPoint&, int32_t));
|
|
MOCK_METHOD2(HandleLongTap, void(const CSSIntPoint&, int32_t));
|
|
MOCK_METHOD3(SendAsyncScrollDOMEvent, void(bool aIsRoot, const CSSRect &aContentRect, const CSSSize &aScrollableSize));
|
|
MOCK_METHOD2(PostDelayedTask, void(Task* aTask, int aDelayMs));
|
|
};
|
|
|
|
class TestAPZCContainerLayer : public ContainerLayer {
|
|
public:
|
|
TestAPZCContainerLayer()
|
|
: ContainerLayer(nullptr, nullptr)
|
|
{}
|
|
void RemoveChild(Layer* aChild) {}
|
|
void InsertAfter(Layer* aChild, Layer* aAfter) {}
|
|
void ComputeEffectiveTransforms(const gfx3DMatrix& aTransformToSurface) {}
|
|
void RepositionChild(Layer* aChild, Layer* aAfter) {}
|
|
};
|
|
|
|
class TestAsyncPanZoomController : public AsyncPanZoomController {
|
|
public:
|
|
TestAsyncPanZoomController(uint64_t aLayersId, MockContentController* aMcc)
|
|
: AsyncPanZoomController(aLayersId, nullptr, aMcc)
|
|
{}
|
|
|
|
void SetFrameMetrics(const FrameMetrics& metrics) {
|
|
ReentrantMonitorAutoEnter lock(mMonitor);
|
|
mFrameMetrics = metrics;
|
|
}
|
|
|
|
FrameMetrics GetFrameMetrics() {
|
|
ReentrantMonitorAutoEnter lock(mMonitor);
|
|
return mFrameMetrics;
|
|
}
|
|
};
|
|
|
|
class TestAPZCTreeManager : public APZCTreeManager {
|
|
protected:
|
|
void AssertOnCompositorThread() MOZ_OVERRIDE { /* no-op */ }
|
|
};
|
|
|
|
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;
|
|
}
|
|
|
|
static
|
|
void ApzcPan(AsyncPanZoomController* apzc, int& aTime, int aTouchStartY, int aTouchEndY) {
|
|
|
|
const int TIME_BETWEEN_TOUCH_EVENT = 100;
|
|
const int OVERCOME_TOUCH_TOLERANCE = 100;
|
|
MultiTouchInput mti;
|
|
nsEventStatus status;
|
|
|
|
mti = MultiTouchInput(MultiTouchInput::MULTITOUCH_START, aTime, 0);
|
|
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));
|
|
status = apzc->HandleInputEvent(mti);
|
|
EXPECT_EQ(status, nsEventStatus_eConsumeNoDefault);
|
|
// APZC should be in TOUCHING state
|
|
|
|
mti = MultiTouchInput(MultiTouchInput::MULTITOUCH_MOVE, aTime, 0);
|
|
aTime += TIME_BETWEEN_TOUCH_EVENT;
|
|
mti.mTouches.AppendElement(SingleTouchData(0, ScreenIntPoint(10, aTouchStartY), ScreenSize(0, 0), 0, 0));
|
|
status = apzc->HandleInputEvent(mti);
|
|
EXPECT_EQ(status, nsEventStatus_eConsumeNoDefault);
|
|
// APZC should be in PANNING, otherwise status != ConsumeNoDefault
|
|
|
|
mti = MultiTouchInput(MultiTouchInput::MULTITOUCH_MOVE, aTime, 0);
|
|
aTime += TIME_BETWEEN_TOUCH_EVENT;
|
|
mti.mTouches.AppendElement(SingleTouchData(0, ScreenIntPoint(10, aTouchEndY), ScreenSize(0, 0), 0, 0));
|
|
status = apzc->HandleInputEvent(mti);
|
|
EXPECT_EQ(status, nsEventStatus_eConsumeNoDefault);
|
|
|
|
mti = MultiTouchInput(MultiTouchInput::MULTITOUCH_END, aTime, 0);
|
|
aTime += TIME_BETWEEN_TOUCH_EVENT;
|
|
mti.mTouches.AppendElement(SingleTouchData(0, ScreenIntPoint(10, aTouchEndY), ScreenSize(0, 0), 0, 0));
|
|
status = apzc->HandleInputEvent(mti);
|
|
}
|
|
|
|
static void
|
|
ApzcPinch(AsyncPanZoomController* aApzc, int aFocusX, int aFocusY, float aScale) {
|
|
aApzc->HandleInputEvent(PinchGestureInput(PinchGestureInput::PINCHGESTURE_START,
|
|
0,
|
|
ScreenPoint(aFocusX, aFocusY),
|
|
10.0,
|
|
10.0,
|
|
0));
|
|
aApzc->HandleInputEvent(PinchGestureInput(PinchGestureInput::PINCHGESTURE_SCALE,
|
|
0,
|
|
ScreenPoint(aFocusX, aFocusY),
|
|
10.0 * aScale,
|
|
10.0,
|
|
0));
|
|
aApzc->HandleInputEvent(PinchGestureInput(PinchGestureInput::PINCHGESTURE_END,
|
|
0,
|
|
ScreenPoint(aFocusX, aFocusY),
|
|
// note: negative values here tell APZC
|
|
// not to turn the pinch into a pan
|
|
-1.0,
|
|
-1.0,
|
|
0));
|
|
}
|
|
|
|
TEST(AsyncPanZoomController, Constructor) {
|
|
// RefCounted class can't live in the stack
|
|
nsRefPtr<MockContentController> mcc = new MockContentController();
|
|
nsRefPtr<TestAsyncPanZoomController> apzc = new TestAsyncPanZoomController(0, mcc);
|
|
apzc->SetFrameMetrics(TestFrameMetrics());
|
|
}
|
|
|
|
TEST(AsyncPanZoomController, Pinch) {
|
|
nsRefPtr<MockContentController> mcc = new 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
|
|
|
|
EXPECT_CALL(*mcc, SendAsyncScrollDOMEvent(_,_,_)).Times(2);
|
|
EXPECT_CALL(*mcc, RequestContentRepaint(_)).Times(1);
|
|
|
|
ApzcPinch(apzc, 250, 300, 1.25);
|
|
|
|
// 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
|
|
|
|
ApzcPinch(apzc, 250, 300, 0.5);
|
|
|
|
// 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);
|
|
}
|
|
|
|
TEST(AsyncPanZoomController, Overzoom) {
|
|
nsRefPtr<MockContentController> mcc = new MockContentController();
|
|
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);
|
|
// the visible area of the document in CSS pixels is x=10 y=0 w=100 h=100
|
|
|
|
EXPECT_CALL(*mcc, SendAsyncScrollDOMEvent(_,_,_)).Times(1);
|
|
EXPECT_CALL(*mcc, RequestContentRepaint(_)).Times(1);
|
|
|
|
ApzcPinch(apzc, 50, 50, 0.5);
|
|
|
|
fm = apzc->GetFrameMetrics();
|
|
EXPECT_EQ(fm.mZoom.scale, 0.8f);
|
|
// 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);
|
|
}
|
|
|
|
TEST(AsyncPanZoomController, SimpleTransform) {
|
|
TimeStamp testStartTime = TimeStamp::Now();
|
|
// RefCounted class can't live in the stack
|
|
nsRefPtr<MockContentController> mcc = new MockContentController();
|
|
nsRefPtr<TestAsyncPanZoomController> apzc = new TestAsyncPanZoomController(0, mcc);
|
|
apzc->SetFrameMetrics(TestFrameMetrics());
|
|
|
|
ScreenPoint pointOut;
|
|
ViewTransform viewTransformOut;
|
|
apzc->SampleContentTransformForFrame(testStartTime, &viewTransformOut, pointOut);
|
|
|
|
EXPECT_EQ(pointOut, ScreenPoint());
|
|
EXPECT_EQ(viewTransformOut, ViewTransform());
|
|
}
|
|
|
|
|
|
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.
|
|
|
|
nsRefPtr<MockContentController> mcc = new MockContentController();
|
|
nsRefPtr<TestAsyncPanZoomController> apzc = new TestAsyncPanZoomController(0, mcc);
|
|
nsRefPtr<TestAsyncPanZoomController> childApzc = new TestAsyncPanZoomController(0, mcc);
|
|
|
|
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);
|
|
metrics.mCumulativeResolution = LayoutDeviceToLayerScale(2);
|
|
metrics.mResolution = ParentLayerToLayerScale(2);
|
|
metrics.mZoom = CSSToScreenScale(6);
|
|
metrics.mDevPixelsPerCSSPixel = CSSToLayoutDeviceScale(3);
|
|
metrics.mScrollId = FrameMetrics::START_SCROLL_ID;
|
|
|
|
FrameMetrics childMetrics = metrics;
|
|
childMetrics.mScrollId = FrameMetrics::START_SCROLL_ID + 1;
|
|
|
|
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
|
|
apzc->SetFrameMetrics(metrics);
|
|
apzc->NotifyLayersUpdated(metrics, true);
|
|
apzc->SampleContentTransformForFrame(testStartTime, &viewTransformOut, pointOut);
|
|
EXPECT_EQ(ViewTransform(LayerPoint(), ParentLayerToScreenScale(2)), viewTransformOut);
|
|
EXPECT_EQ(ScreenPoint(60, 60), pointOut);
|
|
|
|
childApzc->SetFrameMetrics(childMetrics);
|
|
childApzc->NotifyLayersUpdated(childMetrics, true);
|
|
childApzc->SampleContentTransformForFrame(testStartTime, &viewTransformOut, pointOut);
|
|
EXPECT_EQ(ViewTransform(LayerPoint(), ParentLayerToScreenScale(2)), viewTransformOut);
|
|
EXPECT_EQ(ScreenPoint(60, 60), pointOut);
|
|
|
|
// do an async scroll by 5 pixels and check the transform
|
|
metrics.mScrollOffset += CSSPoint(5, 0);
|
|
apzc->SetFrameMetrics(metrics);
|
|
apzc->SampleContentTransformForFrame(testStartTime, &viewTransformOut, pointOut);
|
|
EXPECT_EQ(ViewTransform(LayerPoint(-30, 0), ParentLayerToScreenScale(2)), viewTransformOut);
|
|
EXPECT_EQ(ScreenPoint(90, 60), pointOut);
|
|
|
|
childMetrics.mScrollOffset += CSSPoint(5, 0);
|
|
childApzc->SetFrameMetrics(childMetrics);
|
|
childApzc->SampleContentTransformForFrame(testStartTime, &viewTransformOut, pointOut);
|
|
EXPECT_EQ(ViewTransform(LayerPoint(-30, 0), ParentLayerToScreenScale(2)), viewTransformOut);
|
|
EXPECT_EQ(ScreenPoint(90, 60), pointOut);
|
|
|
|
// do an async zoom of 1.5x and check the transform
|
|
metrics.mZoom.scale *= 1.5f;
|
|
apzc->SetFrameMetrics(metrics);
|
|
apzc->SampleContentTransformForFrame(testStartTime, &viewTransformOut, pointOut);
|
|
EXPECT_EQ(ViewTransform(LayerPoint(-30, 0), ParentLayerToScreenScale(3)), viewTransformOut);
|
|
EXPECT_EQ(ScreenPoint(135, 90), pointOut);
|
|
|
|
childMetrics.mZoom.scale *= 1.5f;
|
|
childApzc->SetFrameMetrics(childMetrics);
|
|
childApzc->SampleContentTransformForFrame(testStartTime, &viewTransformOut, pointOut);
|
|
EXPECT_EQ(ViewTransform(LayerPoint(-30, 0), ParentLayerToScreenScale(3)), viewTransformOut);
|
|
EXPECT_EQ(ScreenPoint(135, 90), pointOut);
|
|
}
|
|
|
|
TEST(AsyncPanZoomController, Pan) {
|
|
TimeStamp testStartTime = TimeStamp::Now();
|
|
AsyncPanZoomController::SetFrameTime(testStartTime);
|
|
|
|
nsRefPtr<MockContentController> mcc = new MockContentController();
|
|
nsRefPtr<TestAsyncPanZoomController> apzc = new TestAsyncPanZoomController(0, mcc);
|
|
|
|
apzc->SetFrameMetrics(TestFrameMetrics());
|
|
apzc->NotifyLayersUpdated(TestFrameMetrics(), true);
|
|
|
|
EXPECT_CALL(*mcc, SendAsyncScrollDOMEvent(_,_,_)).Times(4);
|
|
EXPECT_CALL(*mcc, RequestContentRepaint(_)).Times(1);
|
|
|
|
int time = 0;
|
|
int touchStart = 50;
|
|
int touchEnd = 10;
|
|
ScreenPoint pointOut;
|
|
ViewTransform viewTransformOut;
|
|
|
|
// Pan down
|
|
ApzcPan(apzc, time, touchStart, touchEnd);
|
|
apzc->SampleContentTransformForFrame(testStartTime, &viewTransformOut, pointOut);
|
|
EXPECT_EQ(pointOut, ScreenPoint(0, -(touchEnd-touchStart)));
|
|
EXPECT_NE(viewTransformOut, ViewTransform());
|
|
|
|
// Pan back
|
|
ApzcPan(apzc, time, touchEnd, touchStart);
|
|
apzc->SampleContentTransformForFrame(testStartTime, &viewTransformOut, pointOut);
|
|
EXPECT_EQ(pointOut, ScreenPoint());
|
|
EXPECT_EQ(viewTransformOut, ViewTransform());
|
|
}
|
|
|
|
TEST(AsyncPanZoomController, Fling) {
|
|
TimeStamp testStartTime = TimeStamp::Now();
|
|
AsyncPanZoomController::SetFrameTime(testStartTime);
|
|
|
|
nsRefPtr<MockContentController> mcc = new MockContentController();
|
|
nsRefPtr<TestAsyncPanZoomController> apzc = new TestAsyncPanZoomController(0, mcc);
|
|
|
|
apzc->SetFrameMetrics(TestFrameMetrics());
|
|
apzc->NotifyLayersUpdated(TestFrameMetrics(), true);
|
|
|
|
EXPECT_CALL(*mcc, SendAsyncScrollDOMEvent(_,_,_)).Times(2);
|
|
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
|
|
ApzcPan(apzc, time, touchStart, touchEnd);
|
|
ScreenPoint lastPoint;
|
|
for (int i = 1; i < 50; i+=1) {
|
|
apzc->SampleContentTransformForFrame(testStartTime+TimeDuration::FromMilliseconds(i), &viewTransformOut, pointOut);
|
|
EXPECT_GT(pointOut.y, lastPoint.y);
|
|
lastPoint = pointOut;
|
|
}
|
|
}
|
|
|
|
TEST(AsyncPanZoomController, OverScrollPanning) {
|
|
TimeStamp testStartTime = TimeStamp::Now();
|
|
AsyncPanZoomController::SetFrameTime(testStartTime);
|
|
|
|
nsRefPtr<MockContentController> mcc = new MockContentController();
|
|
nsRefPtr<TestAsyncPanZoomController> apzc = new TestAsyncPanZoomController(0, mcc);
|
|
|
|
apzc->SetFrameMetrics(TestFrameMetrics());
|
|
apzc->NotifyLayersUpdated(TestFrameMetrics(), true);
|
|
|
|
EXPECT_CALL(*mcc, SendAsyncScrollDOMEvent(_,_,_)).Times(3);
|
|
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
|
|
ApzcPan(apzc, time, touchStart, touchEnd);
|
|
apzc->SampleContentTransformForFrame(testStartTime+TimeDuration::FromMilliseconds(1000), &viewTransformOut, pointOut);
|
|
EXPECT_EQ(pointOut, ScreenPoint(0, 90));
|
|
}
|
|
|
|
// Layer tree for HitTesting1
|
|
static already_AddRefed<mozilla::layers::Layer>
|
|
CreateTestLayerTree1(nsRefPtr<LayerManager>& aLayerManager, nsTArray<nsRefPtr<Layer> >& aLayers) {
|
|
const char* layerTreeSyntax = "c(ttcc)";
|
|
// LayerID 0 1234
|
|
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(),
|
|
};
|
|
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(),
|
|
gfx3DMatrix(),
|
|
gfx3DMatrix(),
|
|
gfx3DMatrix(),
|
|
};
|
|
return CreateLayerTree(layerTreeSyntax, layerVisibleRegion, transforms, aLayerManager, aLayers);
|
|
}
|
|
|
|
static void
|
|
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))
|
|
{
|
|
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);
|
|
metrics.mScrollableRect = aScrollableRect;
|
|
metrics.mScrollOffset = CSSPoint(0, 0);
|
|
container->SetFrameMetrics(metrics);
|
|
}
|
|
|
|
static gfxPoint
|
|
NudgeToIntegers(const gfxPoint& aPoint)
|
|
{
|
|
// gfxPoint has doubles but NudgeToInteger takes
|
|
// floats so use local vars. The loss in precision
|
|
// shouldn't affect this because these are supposed
|
|
// to be integers anyway.
|
|
float x = aPoint.x;
|
|
float y = aPoint.y;
|
|
NudgeToInteger(&x);
|
|
NudgeToInteger(&y);
|
|
return gfxPoint(x, y);
|
|
}
|
|
|
|
static already_AddRefed<AsyncPanZoomController>
|
|
GetTargetAPZC(APZCTreeManager* manager, const ScreenPoint& aPoint,
|
|
gfx3DMatrix& aTransformToApzcOut, gfx3DMatrix& aTransformToGeckoOut)
|
|
{
|
|
nsRefPtr<AsyncPanZoomController> hit = manager->GetTargetAPZC(aPoint);
|
|
if (hit) {
|
|
manager->GetInputTransforms(hit.get(), aTransformToApzcOut, aTransformToGeckoOut);
|
|
}
|
|
return hit.forget();
|
|
}
|
|
|
|
// A simple hit testing test that doesn't involve any transforms on layers.
|
|
TEST(APZCTreeManager, HitTesting1) {
|
|
nsTArray<nsRefPtr<Layer> > layers;
|
|
nsRefPtr<LayerManager> lm;
|
|
nsRefPtr<Layer> root = CreateTestLayerTree1(lm, layers);
|
|
|
|
TimeStamp testStartTime = TimeStamp::Now();
|
|
AsyncPanZoomController::SetFrameTime(testStartTime);
|
|
nsRefPtr<MockContentController> mcc = new MockContentController();
|
|
ScopedLayerTreeRegistration controller(0, root, mcc);
|
|
|
|
nsRefPtr<APZCTreeManager> manager = new TestAPZCTreeManager();
|
|
gfx3DMatrix transformToApzc;
|
|
gfx3DMatrix transformToGecko;
|
|
|
|
// No APZC attached so hit testing will return no APZC at (20,20)
|
|
nsRefPtr<AsyncPanZoomController> hit = GetTargetAPZC(manager, ScreenPoint(20, 20), transformToApzc, transformToGecko);
|
|
AsyncPanZoomController* nullAPZC = nullptr;
|
|
EXPECT_EQ(nullAPZC, hit.get());
|
|
EXPECT_EQ(gfx3DMatrix(), transformToApzc);
|
|
EXPECT_EQ(gfx3DMatrix(), transformToGecko);
|
|
|
|
// Now we have a root APZC that will match the page
|
|
SetScrollableFrameMetrics(root, FrameMetrics::START_SCROLL_ID);
|
|
manager->UpdatePanZoomControllerTree(nullptr, root, false, 0);
|
|
hit = GetTargetAPZC(manager, ScreenPoint(15, 15), transformToApzc, transformToGecko);
|
|
EXPECT_EQ(root->AsContainerLayer()->GetAsyncPanZoomController(), hit.get());
|
|
// expect hit point at LayerIntPoint(15, 15)
|
|
EXPECT_EQ(gfxPoint(15, 15), transformToApzc.Transform(gfxPoint(15, 15)));
|
|
EXPECT_EQ(gfxPoint(15, 15), transformToGecko.Transform(gfxPoint(15, 15)));
|
|
|
|
// Now we have a sub APZC with a better fit
|
|
SetScrollableFrameMetrics(layers[3], FrameMetrics::START_SCROLL_ID + 1);
|
|
manager->UpdatePanZoomControllerTree(nullptr, root, false, 0);
|
|
EXPECT_NE(root->AsContainerLayer()->GetAsyncPanZoomController(), layers[3]->AsContainerLayer()->GetAsyncPanZoomController());
|
|
hit = GetTargetAPZC(manager, ScreenPoint(15, 15), transformToApzc, transformToGecko);
|
|
EXPECT_EQ(layers[3]->AsContainerLayer()->GetAsyncPanZoomController(), hit.get());
|
|
// expect hit point at LayerIntPoint(15, 15)
|
|
EXPECT_EQ(gfxPoint(15, 15), transformToApzc.Transform(gfxPoint(15, 15)));
|
|
EXPECT_EQ(gfxPoint(15, 15), transformToGecko.Transform(gfxPoint(15, 15)));
|
|
|
|
// Now test hit testing when we have two scrollable layers
|
|
hit = GetTargetAPZC(manager, ScreenPoint(15, 15), transformToApzc, transformToGecko);
|
|
EXPECT_EQ(layers[3]->AsContainerLayer()->GetAsyncPanZoomController(), hit.get());
|
|
SetScrollableFrameMetrics(layers[4], FrameMetrics::START_SCROLL_ID + 2);
|
|
manager->UpdatePanZoomControllerTree(nullptr, root, false, 0);
|
|
hit = GetTargetAPZC(manager, ScreenPoint(15, 15), transformToApzc, transformToGecko);
|
|
EXPECT_EQ(layers[4]->AsContainerLayer()->GetAsyncPanZoomController(), hit.get());
|
|
// expect hit point at LayerIntPoint(15, 15)
|
|
EXPECT_EQ(gfxPoint(15, 15), transformToApzc.Transform(gfxPoint(15, 15)));
|
|
EXPECT_EQ(gfxPoint(15, 15), transformToGecko.Transform(gfxPoint(15, 15)));
|
|
|
|
// Hit test ouside the reach of layer[3,4] but inside root
|
|
hit = GetTargetAPZC(manager, ScreenPoint(90, 90), transformToApzc, transformToGecko);
|
|
EXPECT_EQ(root->AsContainerLayer()->GetAsyncPanZoomController(), hit.get());
|
|
// expect hit point at LayerIntPoint(90, 90)
|
|
EXPECT_EQ(gfxPoint(90, 90), transformToApzc.Transform(gfxPoint(90, 90)));
|
|
EXPECT_EQ(gfxPoint(90, 90), transformToGecko.Transform(gfxPoint(90, 90)));
|
|
|
|
// Hit test ouside the reach of any layer
|
|
hit = GetTargetAPZC(manager, ScreenPoint(1000, 10), transformToApzc, transformToGecko);
|
|
EXPECT_EQ(nullAPZC, hit.get());
|
|
EXPECT_EQ(gfx3DMatrix(), transformToApzc);
|
|
EXPECT_EQ(gfx3DMatrix(), transformToGecko);
|
|
hit = GetTargetAPZC(manager, ScreenPoint(-1000, 10), transformToApzc, transformToGecko);
|
|
EXPECT_EQ(nullAPZC, hit.get());
|
|
EXPECT_EQ(gfx3DMatrix(), transformToApzc);
|
|
EXPECT_EQ(gfx3DMatrix(), transformToGecko);
|
|
|
|
manager->ClearTree();
|
|
}
|
|
|
|
// 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);
|
|
|
|
TimeStamp testStartTime = TimeStamp::Now();
|
|
AsyncPanZoomController::SetFrameTime(testStartTime);
|
|
nsRefPtr<MockContentController> mcc = new MockContentController();
|
|
ScopedLayerTreeRegistration controller(0, root, mcc);
|
|
|
|
nsRefPtr<APZCTreeManager> manager = new TestAPZCTreeManager();
|
|
nsRefPtr<AsyncPanZoomController> hit;
|
|
gfx3DMatrix transformToApzc;
|
|
gfx3DMatrix transformToGecko;
|
|
|
|
// Set a CSS transform on one of the layers.
|
|
gfx3DMatrix transform;
|
|
transform.ScalePost(2, 1, 1);
|
|
layers[2]->SetBaseTransform(transform);
|
|
|
|
// Make some other layers scrollable.
|
|
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));
|
|
|
|
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.
|
|
hit = GetTargetAPZC(manager, ScreenPoint(75, 25), transformToApzc, transformToGecko);
|
|
EXPECT_EQ(apzcroot, hit.get());
|
|
EXPECT_EQ(gfxPoint(75, 25), transformToApzc.Transform(gfxPoint(75, 25)));
|
|
EXPECT_EQ(gfxPoint(75, 25), transformToGecko.Transform(gfxPoint(75, 25)));
|
|
|
|
// 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).
|
|
hit = GetTargetAPZC(manager, ScreenPoint(15, 75), transformToApzc, transformToGecko);
|
|
EXPECT_EQ(apzcroot, hit.get());
|
|
EXPECT_EQ(gfxPoint(15, 75), transformToApzc.Transform(gfxPoint(15, 75)));
|
|
EXPECT_EQ(gfxPoint(15, 75), transformToGecko.Transform(gfxPoint(15, 75)));
|
|
|
|
// Hit an area on layers[1].
|
|
hit = GetTargetAPZC(manager, ScreenPoint(25, 25), transformToApzc, transformToGecko);
|
|
EXPECT_EQ(apzc1, hit.get());
|
|
EXPECT_EQ(gfxPoint(25, 25), transformToApzc.Transform(gfxPoint(25, 25)));
|
|
EXPECT_EQ(gfxPoint(25, 25), transformToGecko.Transform(gfxPoint(25, 25)));
|
|
|
|
// Hit an area on layers[3].
|
|
hit = GetTargetAPZC(manager, ScreenPoint(25, 75), transformToApzc, transformToGecko);
|
|
EXPECT_EQ(apzc3, hit.get());
|
|
// transformToApzc should unapply layers[2]'s transform
|
|
EXPECT_EQ(gfxPoint(12.5, 75), transformToApzc.Transform(gfxPoint(25, 75)));
|
|
// and transformToGecko should reapply it
|
|
EXPECT_EQ(gfxPoint(25, 75), transformToGecko.Transform(gfxPoint(12.5, 75)));
|
|
|
|
// Hit an area on layers[3] that would be on the root if layers[2]
|
|
// weren't transformed.
|
|
hit = GetTargetAPZC(manager, ScreenPoint(75, 75), transformToApzc, transformToGecko);
|
|
EXPECT_EQ(apzc3, hit.get());
|
|
// transformToApzc should unapply layers[2]'s transform
|
|
EXPECT_EQ(gfxPoint(37.5, 75), transformToApzc.Transform(gfxPoint(75, 75)));
|
|
// and transformToGecko should reapply it
|
|
EXPECT_EQ(gfxPoint(75, 75), transformToGecko.Transform(gfxPoint(37.5, 75)));
|
|
|
|
// 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".
|
|
EXPECT_CALL(*mcc, PostDelayedTask(_,_)).Times(1);
|
|
EXPECT_CALL(*mcc, SendAsyncScrollDOMEvent(_,_,_)).Times(2);
|
|
EXPECT_CALL(*mcc, RequestContentRepaint(_)).Times(1);
|
|
ApzcPan(apzcroot, 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)));
|
|
// but transformToGecko does
|
|
EXPECT_EQ(gfxPoint(75, 125), transformToGecko.Transform(gfxPoint(75, 75)));
|
|
|
|
// Hit where layers[1] used to be and where layers[3] should now be.
|
|
hit = GetTargetAPZC(manager, ScreenPoint(25, 25), transformToApzc, transformToGecko);
|
|
EXPECT_EQ(apzc3, hit.get());
|
|
// transformToApzc unapplies both layers[2]'s css transform and the root's
|
|
// async trasnform
|
|
EXPECT_EQ(gfxPoint(12.5, 75), transformToApzc.Transform(gfxPoint(25, 25)));
|
|
// transformToGecko reapplies the css transform only (since Gecko doesn't
|
|
// know about async transforms)
|
|
EXPECT_EQ(gfxPoint(25, 75), transformToGecko.Transform(gfxPoint(12.5, 75)));
|
|
|
|
manager->ClearTree();
|
|
}
|