mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Backing out bug 884796 HiDPI fix r=backout
This commit is contained in:
parent
8da1fa5b7f
commit
8977fc22af
@ -42,6 +42,8 @@ function inspectNode(aInspector)
|
||||
function performScrollingTest()
|
||||
{
|
||||
executeSoon(function() {
|
||||
// FIXME: this will fail on retina displays. EventUtils will only scroll
|
||||
// 25px down instead of 50.
|
||||
EventUtils.synthesizeWheel(div, 10, 10,
|
||||
{ deltaY: 50.0, deltaMode: WheelEvent.DOM_DELTA_PIXEL },
|
||||
iframe.contentWindow);
|
||||
|
@ -412,13 +412,6 @@ function synthesizeWheel(aTarget, aOffsetX, aOffsetY, aEvent, aWindow)
|
||||
aEvent.deltaY > 0 ? Math.floor(aEvent.deltaY) :
|
||||
Math.ceil(aEvent.deltaY);
|
||||
|
||||
if (aEvent.deltaMode === WheelEvent.DOM_DELTA_PIXEL)
|
||||
{
|
||||
aEvent.deltaX *= devicePixelRatio;
|
||||
aEvent.deltaY *= devicePixelRatio;
|
||||
aEvent.deltaZ *= devicePixelRatio;
|
||||
}
|
||||
|
||||
var rect = aTarget.getBoundingClientRect();
|
||||
utils.sendWheelEvent(rect.left + aOffsetX, rect.top + aOffsetY,
|
||||
aEvent.deltaX, aEvent.deltaY, aEvent.deltaZ,
|
||||
|
Loading…
Reference in New Issue
Block a user