зеркало из https://github.com/mozilla/gecko-dev.git
Backing out bug 884796 HiDPI fix r=backout
This commit is contained in:
Родитель
abcc49eaf4
Коммит
11ec4d96f6
|
@ -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,
|
||||
|
|
Загрузка…
Ссылка в новой задаче