Bug 735553 - Copying touch events should copy the timestamp. r=smaug

This commit is contained in:
Wes Johnston 2012-03-19 14:33:42 -07:00
parent 6ca4cffe2a
commit 1ba8600131

View File

@ -1549,6 +1549,11 @@ public:
aEvent->widget,
NS_TOUCH_EVENT)
{
isShift = aEvent->isShift;
isControl = aEvent->isControl;
isMeta = aEvent->isMeta;
isAlt = aEvent->isAlt;
time = aEvent->time;
touches.AppendElements(aEvent->touches);
MOZ_COUNT_CTOR(nsTouchEvent);
}