Backout changeset b5e6116756b6 (wrong bug number).

This commit is contained in:
David Anderson 2015-09-04 17:44:23 -07:00
Родитель e4cb588c20
Коммит 4c72778d2c
1 изменённых файлов: 2 добавлений и 5 удалений

Просмотреть файл

@ -272,11 +272,8 @@ static EventRegions
GetEventRegions(const LayerMetricsWrapper& aLayer)
{
if (aLayer.IsScrollInfoLayer()) {
ParentLayerIntRect compositionBounds(RoundedToInt(aLayer.Metrics().GetCompositionBounds()));
nsIntRegion hitRegion(ParentLayerIntRect::ToUntyped(compositionBounds));
EventRegions eventRegions(hitRegion);
eventRegions.mDispatchToContentHitRegion = eventRegions.mHitRegion;
return eventRegions;
return EventRegions(nsIntRegion(ParentLayerIntRect::ToUntyped(
RoundedToInt(aLayer.Metrics().GetCompositionBounds()))));
}
return aLayer.GetEventRegions();
}