Bug 811178 - Send mousemove before mousedown and mouseup, r=cjones

This commit is contained in:
Michael Wu 2012-12-05 19:32:19 -05:00
parent 82c5aee951
commit d0ccd2d912

View File

@ -1262,6 +1262,7 @@ TabChild::RecvHandleSingleTap(const nsIntPoint& aPoint)
return true;
}
RecvMouseEvent(NS_LITERAL_STRING("mousemove"), aPoint.x, aPoint.y, 0, 1, 0, false);
RecvMouseEvent(NS_LITERAL_STRING("mousedown"), aPoint.x, aPoint.y, 0, 1, 0, false);
RecvMouseEvent(NS_LITERAL_STRING("mouseup"), aPoint.x, aPoint.y, 0, 1, 0, false);