This patch tries to dispatch ePointerRawUpdate with PresShell::EventHandler::DispatchPrecedingPointerEvent as same as usual pointer events. For using the path, this patch adds 2 internal events, eMouseRawUpdate and eTouchRawUpdate which are never dispatched into the DOM because PresShell::EventHandler::DispatchPrecedingPointerEvent will return false for that and then the caller will stop handling the internal events. There are 3 dispatchers of the internal raw update events. One is PresShell::EnsurePrecedingPointerRawUpdate(). This dispatches the internal event if and only if the coming event of PresShell::HandleEvent will cause ePointerMove. The reason why PresShell::HandleEvent handles the preceding raw-update event is, we should support ePointerRawUpdate events for synthesized events for tests (in-process ones) and in the main process. Additionally, if a pointerrawupdate event may destroy the target <iframe>. In such ase, the following pointermove may need to be dispatched on its parent window or another <iframe> window. Therefore, we need to dispatch the internal raw update event before considering the target window (PresShell) and handling the capturing element. The others are BrowserChild::RecvRealMouseMoveEvent and BrowserChild::RecvRealTouchMoveEvent. They dispatch the internal events when they won't dispatch the received event immediately to coalesce with further similar input. For avoiding to dispatch the internal event for same source event, this adds WidgetPointerHelper::convertToPointerRawUpdate member to check it in PresShell::HandlePrecedingPointerRawUpdate. Differential Revision: https://phabricator.services.mozilla.com/D243404
459 lines
16 KiB
C++
459 lines
16 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*
|
|
* Portions Copyright 2013 Microsoft Open Technologies, Inc. */
|
|
|
|
#include "PointerEvent.h"
|
|
|
|
#include "mozilla/dom/MouseEventBinding.h"
|
|
#include "mozilla/dom/PointerEventBinding.h"
|
|
#include "mozilla/dom/PointerEventHandler.h"
|
|
#include "mozilla/MouseEvents.h"
|
|
#include "mozilla/StaticPrefs_dom.h"
|
|
#include "nsContentUtils.h"
|
|
#include "prtime.h"
|
|
#include "jsfriendapi.h"
|
|
|
|
namespace mozilla::dom {
|
|
|
|
PointerEvent::PointerEvent(EventTarget* aOwner, nsPresContext* aPresContext,
|
|
WidgetPointerEvent* aEvent)
|
|
: MouseEvent(aOwner, aPresContext,
|
|
aEvent ? aEvent
|
|
: new WidgetPointerEvent(false, eVoidEvent, nullptr)) {
|
|
NS_ASSERTION(mEvent->mClass == ePointerEventClass,
|
|
"event type mismatch ePointerEventClass");
|
|
|
|
WidgetMouseEvent* mouseEvent = mEvent->AsMouseEvent();
|
|
if (aEvent) {
|
|
mEventIsInternal = false;
|
|
mTiltX.emplace(aEvent->tiltX);
|
|
mTiltY.emplace(aEvent->tiltY);
|
|
// mAltitudeAngle and mAzimuthAngle should be computed when they are
|
|
// requested by JS.
|
|
} else {
|
|
mEventIsInternal = true;
|
|
mEvent->mRefPoint = LayoutDeviceIntPoint(0, 0);
|
|
mouseEvent->mInputSource = MouseEvent_Binding::MOZ_SOURCE_UNKNOWN;
|
|
}
|
|
// 5.2 Pointer Event types, for all pointer events, |detail| attribute SHOULD
|
|
// be 0. However, UI Events defines that it should be click count if the
|
|
// event type is "click".
|
|
mDetail =
|
|
IsPointerEventMessageOriginallyMouseEventMessage(mouseEvent->mMessage)
|
|
? mouseEvent->mClickCount
|
|
: 0;
|
|
}
|
|
|
|
JSObject* PointerEvent::WrapObjectInternal(JSContext* aCx,
|
|
JS::Handle<JSObject*> aGivenProto) {
|
|
return PointerEvent_Binding::Wrap(aCx, this, aGivenProto);
|
|
}
|
|
|
|
static uint16_t ConvertStringToPointerType(const nsAString& aPointerTypeArg,
|
|
bool aForTrustedEvent) {
|
|
if (aPointerTypeArg.EqualsLiteral("mouse")) {
|
|
return MouseEvent_Binding::MOZ_SOURCE_MOUSE;
|
|
}
|
|
if (aPointerTypeArg.EqualsLiteral("pen")) {
|
|
return MouseEvent_Binding::MOZ_SOURCE_PEN;
|
|
}
|
|
if (aPointerTypeArg.EqualsLiteral("touch")) {
|
|
return MouseEvent_Binding::MOZ_SOURCE_TOUCH;
|
|
}
|
|
|
|
// Some chrome script need to copy the input source of a source event to
|
|
// dispatching new event. Therefore, we need to allow chrome script to
|
|
// set it to any input sources which we are supporting. However, these
|
|
// types are not standardized by the specs. Therefore, we should do this
|
|
// only when the event is a trusted one.
|
|
if (aForTrustedEvent) {
|
|
if (aPointerTypeArg.EqualsLiteral("eraser")) {
|
|
return MouseEvent_Binding::MOZ_SOURCE_ERASER;
|
|
}
|
|
if (aPointerTypeArg.EqualsLiteral("cursor")) {
|
|
return MouseEvent_Binding::MOZ_SOURCE_CURSOR;
|
|
}
|
|
if (aPointerTypeArg.EqualsLiteral("keyboard")) {
|
|
return MouseEvent_Binding::MOZ_SOURCE_KEYBOARD;
|
|
}
|
|
}
|
|
|
|
return MouseEvent_Binding::MOZ_SOURCE_UNKNOWN;
|
|
}
|
|
|
|
void ConvertPointerTypeToString(uint16_t aPointerTypeSrc,
|
|
nsAString& aPointerTypeDest) {
|
|
switch (aPointerTypeSrc) {
|
|
case MouseEvent_Binding::MOZ_SOURCE_MOUSE:
|
|
aPointerTypeDest.AssignLiteral("mouse");
|
|
break;
|
|
case MouseEvent_Binding::MOZ_SOURCE_PEN:
|
|
aPointerTypeDest.AssignLiteral("pen");
|
|
break;
|
|
case MouseEvent_Binding::MOZ_SOURCE_TOUCH:
|
|
aPointerTypeDest.AssignLiteral("touch");
|
|
break;
|
|
// In ConvertStringToPointerType(), we allow chrome script to set the
|
|
// input source from Gecko specific pointerType value. However, we won't
|
|
// expose them to the web because they are not standardized.
|
|
case MouseEvent_Binding::MOZ_SOURCE_ERASER:
|
|
case MouseEvent_Binding::MOZ_SOURCE_CURSOR:
|
|
case MouseEvent_Binding::MOZ_SOURCE_KEYBOARD:
|
|
aPointerTypeDest.Truncate();
|
|
break;
|
|
default:
|
|
aPointerTypeDest.Truncate();
|
|
break;
|
|
}
|
|
}
|
|
|
|
// static
|
|
already_AddRefed<PointerEvent> PointerEvent::Constructor(
|
|
EventTarget* aOwner, const nsAString& aType,
|
|
const PointerEventInit& aParam) {
|
|
RefPtr<PointerEvent> e = new PointerEvent(aOwner, nullptr, nullptr);
|
|
bool trusted = e->Init(aOwner);
|
|
|
|
e->InitMouseEventInternal(
|
|
aType, aParam.mBubbles, aParam.mCancelable, aParam.mView, aParam.mDetail,
|
|
aParam.mScreenX, aParam.mScreenY, aParam.mClientX, aParam.mClientY, false,
|
|
false, false, false, aParam.mButton, aParam.mRelatedTarget);
|
|
e->InitializeExtraMouseEventDictionaryMembers(aParam);
|
|
e->mPointerType = Some(aParam.mPointerType);
|
|
|
|
WidgetPointerEvent* widgetEvent = e->mEvent->AsPointerEvent();
|
|
widgetEvent->pointerId = aParam.mPointerId;
|
|
widgetEvent->mWidth = aParam.mWidth;
|
|
widgetEvent->mHeight = aParam.mHeight;
|
|
widgetEvent->mPressure = aParam.mPressure;
|
|
widgetEvent->tangentialPressure = aParam.mTangentialPressure;
|
|
widgetEvent->twist = aParam.mTwist;
|
|
widgetEvent->mInputSource =
|
|
ConvertStringToPointerType(aParam.mPointerType, trusted);
|
|
widgetEvent->mIsPrimary = aParam.mIsPrimary;
|
|
widgetEvent->mButtons = aParam.mButtons;
|
|
|
|
if (aParam.mTiltX.WasPassed()) {
|
|
e->mTiltX.emplace(aParam.mTiltX.Value());
|
|
}
|
|
if (aParam.mTiltY.WasPassed()) {
|
|
e->mTiltY.emplace(aParam.mTiltY.Value());
|
|
}
|
|
if (aParam.mAltitudeAngle.WasPassed()) {
|
|
e->mAltitudeAngle.emplace(aParam.mAltitudeAngle.Value());
|
|
}
|
|
if (aParam.mAzimuthAngle.WasPassed()) {
|
|
e->mAzimuthAngle.emplace(aParam.mAzimuthAngle.Value());
|
|
}
|
|
if (!aParam.mCoalescedEvents.IsEmpty()) {
|
|
e->mCoalescedEvents.AppendElements(aParam.mCoalescedEvents);
|
|
}
|
|
if (!aParam.mPredictedEvents.IsEmpty()) {
|
|
e->mPredictedEvents.AppendElements(aParam.mPredictedEvents);
|
|
}
|
|
|
|
// If only tiltX and/or tiltY is set, altitudeAngle and azimuthAngle should
|
|
// be computed from them when they are requested by JS.
|
|
if ((e->mTiltX || e->mTiltY) && (!e->mAltitudeAngle && !e->mAzimuthAngle)) {
|
|
if (!e->mTiltX) {
|
|
e->mTiltX.emplace(0);
|
|
}
|
|
if (!e->mTiltY) {
|
|
e->mTiltY.emplace(0);
|
|
}
|
|
}
|
|
// If only altitudeAngle and/or azimuthAngle is set, tiltX and tiltY should be
|
|
// computed from them when they are requested by JS.
|
|
else if ((e->mAltitudeAngle || e->mAzimuthAngle) &&
|
|
(!e->mTiltX && !e->mTiltY)) {
|
|
if (!e->mAltitudeAngle) {
|
|
e->mAltitudeAngle.emplace(WidgetPointerHelper::GetDefaultAltitudeAngle());
|
|
}
|
|
if (!e->mAzimuthAngle) {
|
|
e->mAzimuthAngle.emplace(WidgetPointerHelper::GetDefaultAzimuthAngle());
|
|
}
|
|
}
|
|
// Otherwise, initialize the uninitialized values with their default values
|
|
else {
|
|
if (!e->mTiltX) {
|
|
e->mTiltX.emplace(0);
|
|
}
|
|
if (!e->mTiltY) {
|
|
e->mTiltY.emplace(0);
|
|
}
|
|
if (!e->mAltitudeAngle) {
|
|
e->mAltitudeAngle.emplace(WidgetPointerHelper::GetDefaultAltitudeAngle());
|
|
}
|
|
if (!e->mAzimuthAngle) {
|
|
e->mAzimuthAngle.emplace(WidgetPointerHelper::GetDefaultAzimuthAngle());
|
|
}
|
|
}
|
|
|
|
e->SetTrusted(trusted);
|
|
e->SetComposed(aParam.mComposed);
|
|
return e.forget();
|
|
}
|
|
|
|
// static
|
|
already_AddRefed<PointerEvent> PointerEvent::Constructor(
|
|
const GlobalObject& aGlobal, const nsAString& aType,
|
|
const PointerEventInit& aParam) {
|
|
nsCOMPtr<EventTarget> owner = do_QueryInterface(aGlobal.GetAsSupports());
|
|
return Constructor(owner, aType, aParam);
|
|
}
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_CLASS(PointerEvent)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN_INHERITED(PointerEvent, MouseEvent)
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK(mCoalescedEvents)
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK(mPredictedEvents)
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN_INHERITED(PointerEvent, MouseEvent)
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mCoalescedEvents)
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mPredictedEvents)
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(PointerEvent)
|
|
NS_INTERFACE_MAP_END_INHERITING(MouseEvent)
|
|
|
|
NS_IMPL_ADDREF_INHERITED(PointerEvent, MouseEvent)
|
|
NS_IMPL_RELEASE_INHERITED(PointerEvent, MouseEvent)
|
|
|
|
void PointerEvent::GetPointerType(nsAString& aPointerType) {
|
|
if (mPointerType.isSome()) {
|
|
aPointerType = mPointerType.value();
|
|
return;
|
|
}
|
|
|
|
#if SPOOFED_MAX_TOUCH_POINTS <= 0
|
|
if (ShouldResistFingerprinting()) {
|
|
aPointerType.AssignLiteral("mouse");
|
|
return;
|
|
}
|
|
#endif
|
|
|
|
ConvertPointerTypeToString(mEvent->AsPointerEvent()->mInputSource,
|
|
aPointerType);
|
|
}
|
|
|
|
int32_t PointerEvent::PointerId() {
|
|
return (ShouldResistFingerprinting(true))
|
|
? PointerEventHandler::GetSpoofedPointerIdForRFP()
|
|
: mEvent->AsPointerEvent()->pointerId;
|
|
}
|
|
|
|
double PointerEvent::Width() const {
|
|
return ShouldResistFingerprinting() ? 1.0 : mEvent->AsPointerEvent()->mWidth;
|
|
}
|
|
|
|
double PointerEvent::Height() const {
|
|
return ShouldResistFingerprinting() ? 1.0 : mEvent->AsPointerEvent()->mHeight;
|
|
}
|
|
|
|
float PointerEvent::Pressure() {
|
|
if (mEvent->mMessage == ePointerUp || !ShouldResistFingerprinting()) {
|
|
return mEvent->AsPointerEvent()->mPressure;
|
|
}
|
|
|
|
// According to [1], we should use 0.5 when it is in active buttons state and
|
|
// 0 otherwise for devices that don't support pressure. And a pointerup event
|
|
// always reports 0, so we don't need to spoof that.
|
|
//
|
|
// [1] https://www.w3.org/TR/pointerevents/#dom-pointerevent-pressure
|
|
float spoofedPressure = 0.0;
|
|
if (mEvent->AsPointerEvent()->mButtons) {
|
|
spoofedPressure = 0.5;
|
|
}
|
|
|
|
return spoofedPressure;
|
|
}
|
|
|
|
float PointerEvent::TangentialPressure() {
|
|
return ShouldResistFingerprinting()
|
|
? 0
|
|
: mEvent->AsPointerEvent()->tangentialPressure;
|
|
}
|
|
|
|
int32_t PointerEvent::TiltX() {
|
|
if (ShouldResistFingerprinting()) {
|
|
return 0;
|
|
}
|
|
if (mTiltX.isSome()) {
|
|
return *mTiltX;
|
|
}
|
|
mTiltX.emplace(
|
|
WidgetPointerHelper::ComputeTiltX(*mAltitudeAngle, *mAzimuthAngle));
|
|
return *mTiltX;
|
|
}
|
|
|
|
int32_t PointerEvent::TiltY() {
|
|
if (ShouldResistFingerprinting()) {
|
|
return 0;
|
|
}
|
|
if (mTiltY.isSome()) {
|
|
return *mTiltY;
|
|
}
|
|
mTiltY.emplace(
|
|
WidgetPointerHelper::ComputeTiltY(*mAltitudeAngle, *mAzimuthAngle));
|
|
return *mTiltY;
|
|
}
|
|
|
|
int32_t PointerEvent::Twist() {
|
|
return ShouldResistFingerprinting() ? 0 : mEvent->AsPointerEvent()->twist;
|
|
}
|
|
|
|
double PointerEvent::AltitudeAngle() {
|
|
if (ShouldResistFingerprinting()) {
|
|
return WidgetPointerHelper::GetDefaultAltitudeAngle();
|
|
}
|
|
if (mAltitudeAngle.isSome()) {
|
|
return *mAltitudeAngle;
|
|
}
|
|
mAltitudeAngle.emplace(
|
|
WidgetPointerHelper::ComputeAltitudeAngle(*mTiltX, *mTiltY));
|
|
return *mAltitudeAngle;
|
|
}
|
|
|
|
double PointerEvent::AzimuthAngle() {
|
|
if (ShouldResistFingerprinting()) {
|
|
return WidgetPointerHelper::GetDefaultAzimuthAngle();
|
|
}
|
|
if (mAzimuthAngle.isSome()) {
|
|
return *mAzimuthAngle;
|
|
}
|
|
mAzimuthAngle.emplace(
|
|
WidgetPointerHelper::ComputeAzimuthAngle(*mTiltX, *mTiltY));
|
|
return *mAzimuthAngle;
|
|
}
|
|
|
|
bool PointerEvent::IsPrimary() { return mEvent->AsPointerEvent()->mIsPrimary; }
|
|
|
|
bool PointerEvent::EnableGetCoalescedEvents(JSContext* aCx, JSObject* aGlobal) {
|
|
return !StaticPrefs::
|
|
dom_w3c_pointer_events_getcoalescedevents_only_in_securecontext() ||
|
|
nsContentUtils::IsSecureContextOrWebExtension(aCx, aGlobal);
|
|
}
|
|
|
|
void PointerEvent::GetCoalescedEvents(
|
|
nsTArray<RefPtr<PointerEvent>>& aPointerEvents) {
|
|
WidgetPointerEvent* widgetEvent = mEvent->AsPointerEvent();
|
|
MOZ_ASSERT(widgetEvent);
|
|
EnsureFillingCoalescedEvents(*widgetEvent);
|
|
if (mCoalescedEvents.IsEmpty() && widgetEvent &&
|
|
widgetEvent->mCoalescedWidgetEvents &&
|
|
!widgetEvent->mCoalescedWidgetEvents->mEvents.IsEmpty()) {
|
|
nsCOMPtr<EventTarget> owner = do_QueryInterface(mOwner);
|
|
for (WidgetPointerEvent& event :
|
|
widgetEvent->mCoalescedWidgetEvents->mEvents) {
|
|
RefPtr<PointerEvent> domEvent =
|
|
NS_NewDOMPointerEvent(owner, nullptr, &event);
|
|
domEvent->mCoalescedOrPredictedEvent = true;
|
|
|
|
// The dom event is derived from an OS generated widget event. Setup
|
|
// mWidget and mPresContext since they are necessary to calculate
|
|
// offsetX / offsetY.
|
|
domEvent->mEvent->AsGUIEvent()->mWidget = widgetEvent->mWidget;
|
|
domEvent->mPresContext = mPresContext;
|
|
|
|
// The coalesced widget mouse events shouldn't have been dispatched.
|
|
MOZ_ASSERT(!domEvent->mEvent->mTarget);
|
|
// The event target should be the same as the dispatched event's target.
|
|
domEvent->mEvent->mTarget = mEvent->mTarget;
|
|
|
|
// JS could hold reference to dom events. We have to ask dom event to
|
|
// duplicate its private data to avoid the widget event is destroyed.
|
|
domEvent->DuplicatePrivateData();
|
|
|
|
mCoalescedEvents.AppendElement(domEvent);
|
|
}
|
|
}
|
|
if (mEvent->IsTrusted() && mEvent->mTarget) {
|
|
for (RefPtr<PointerEvent>& pointerEvent : mCoalescedEvents) {
|
|
// Only set event target when it's null.
|
|
if (!pointerEvent->mEvent->mTarget) {
|
|
pointerEvent->mEvent->mTarget = mEvent->mTarget;
|
|
}
|
|
}
|
|
}
|
|
aPointerEvents.AppendElements(mCoalescedEvents);
|
|
}
|
|
|
|
void PointerEvent::EnsureFillingCoalescedEvents(
|
|
WidgetPointerEvent& aWidgetEvent) {
|
|
if (!aWidgetEvent.IsTrusted() ||
|
|
(aWidgetEvent.mMessage != ePointerMove &&
|
|
aWidgetEvent.mMessage != ePointerRawUpdate) ||
|
|
!mCoalescedEvents.IsEmpty() ||
|
|
(aWidgetEvent.mCoalescedWidgetEvents &&
|
|
!aWidgetEvent.mCoalescedWidgetEvents->mEvents.IsEmpty()) ||
|
|
mCoalescedOrPredictedEvent) {
|
|
return;
|
|
}
|
|
if (!aWidgetEvent.mCoalescedWidgetEvents) {
|
|
aWidgetEvent.mCoalescedWidgetEvents = new WidgetPointerEventHolder();
|
|
}
|
|
WidgetPointerEvent* const coalescedEvent =
|
|
aWidgetEvent.mCoalescedWidgetEvents->mEvents.AppendElement(
|
|
WidgetPointerEvent(true, aWidgetEvent.mMessage,
|
|
aWidgetEvent.mWidget));
|
|
MOZ_ASSERT(coalescedEvent);
|
|
PointerEventHandler::InitCoalescedEventFromPointerEvent(*coalescedEvent,
|
|
aWidgetEvent);
|
|
}
|
|
|
|
void PointerEvent::GetPredictedEvents(
|
|
nsTArray<RefPtr<PointerEvent>>& aPointerEvents) {
|
|
// XXX Add support for native predicted events, bug 1550461
|
|
// And when doing so, update mCoalescedOrPredictedEvent here.
|
|
if (mEvent->IsTrusted() && mEvent->mTarget) {
|
|
for (RefPtr<PointerEvent>& pointerEvent : mPredictedEvents) {
|
|
// Only set event target when it's null.
|
|
if (!pointerEvent->mEvent->mTarget) {
|
|
pointerEvent->mEvent->mTarget = mEvent->mTarget;
|
|
}
|
|
}
|
|
}
|
|
aPointerEvents.AppendElements(mPredictedEvents);
|
|
}
|
|
|
|
bool PointerEvent::ShouldResistFingerprinting(bool aForPointerId) const {
|
|
// There are three simple situations we don't need to spoof this pointer
|
|
// event.
|
|
// 1. The pref privcy.resistFingerprinting' is false, we fast return here
|
|
// since we don't need to do any QI of following codes.
|
|
// 2. This event is generated by scripts.
|
|
// 3. This event is a mouse pointer event.
|
|
// We don't need to check for the system group since pointer events won't be
|
|
// dispatched to the system group.
|
|
RFPTarget target =
|
|
aForPointerId ? RFPTarget::PointerId : RFPTarget::PointerEvents;
|
|
if (!nsContentUtils::ShouldResistFingerprinting("Efficiency Check", target) ||
|
|
!mEvent->IsTrusted() ||
|
|
(mEvent->AsPointerEvent()->mInputSource ==
|
|
MouseEvent_Binding::MOZ_SOURCE_MOUSE &&
|
|
SPOOFED_MAX_TOUCH_POINTS == 0)) {
|
|
return false;
|
|
}
|
|
|
|
// Pref is checked above, so use true as fallback.
|
|
nsCOMPtr<Document> doc = GetDocument();
|
|
return doc ? doc->ShouldResistFingerprinting(target) : true;
|
|
}
|
|
|
|
} // namespace mozilla::dom
|
|
|
|
using namespace mozilla;
|
|
using namespace mozilla::dom;
|
|
|
|
already_AddRefed<PointerEvent> NS_NewDOMPointerEvent(
|
|
EventTarget* aOwner, nsPresContext* aPresContext,
|
|
WidgetPointerEvent* aEvent) {
|
|
RefPtr<PointerEvent> it = new PointerEvent(aOwner, aPresContext, aEvent);
|
|
return it.forget();
|
|
}
|