mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Backed out changeset 79686836f1f7 "(bug 1005089) r=bz" for bustage on a CLOSED TREE
--HG-- extra : amend_source : 5170a31dc799f4401d30c8d6c4423dad2e84535f
This commit is contained in:
parent
0b57d4a4f7
commit
ec53620a35
@ -90,7 +90,7 @@ NS_IMPL_CYCLE_COLLECTING_ADDREF(Touch)
|
||||
NS_IMPL_CYCLE_COLLECTING_RELEASE(Touch)
|
||||
|
||||
EventTarget*
|
||||
Touch::GetTarget() const
|
||||
Touch::Target() const
|
||||
{
|
||||
nsCOMPtr<nsIContent> content = do_QueryInterface(mTarget);
|
||||
if (content && content->ChromeOnlyAccess() &&
|
||||
|
@ -62,7 +62,7 @@ public:
|
||||
|
||||
// WebIDL
|
||||
int32_t Identifier() const { return mIdentifier; }
|
||||
EventTarget* GetTarget() const;
|
||||
EventTarget* Target() const;
|
||||
int32_t ScreenX() const { return mScreenPoint.x; }
|
||||
int32_t ScreenY() const { return mScreenPoint.y; }
|
||||
int32_t ClientX() const { return mClientPoint.x; }
|
||||
|
@ -12,16 +12,16 @@
|
||||
|
||||
[Func="mozilla::dom::Touch::PrefEnabled"]
|
||||
interface Touch {
|
||||
readonly attribute long identifier;
|
||||
readonly attribute EventTarget? target;
|
||||
readonly attribute long screenX;
|
||||
readonly attribute long screenY;
|
||||
readonly attribute long clientX;
|
||||
readonly attribute long clientY;
|
||||
readonly attribute long pageX;
|
||||
readonly attribute long pageY;
|
||||
readonly attribute long radiusX;
|
||||
readonly attribute long radiusY;
|
||||
readonly attribute float rotationAngle;
|
||||
readonly attribute float force;
|
||||
readonly attribute long identifier;
|
||||
readonly attribute EventTarget target;
|
||||
readonly attribute long screenX;
|
||||
readonly attribute long screenY;
|
||||
readonly attribute long clientX;
|
||||
readonly attribute long clientY;
|
||||
readonly attribute long pageX;
|
||||
readonly attribute long pageY;
|
||||
readonly attribute long radiusX;
|
||||
readonly attribute long radiusY;
|
||||
readonly attribute float rotationAngle;
|
||||
readonly attribute float force;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user