Bug 780336 - BrowserElementScrolling cosumes 7% of profile time on gaia homescreen, but isn't used. r=cjones

This commit is contained in:
Vivien Nicolas 2012-08-07 16:52:23 +02:00
Родитель 2c3082317d
Коммит 5720b6585d
1 изменённых файлов: 5 добавлений и 1 удалений

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

@ -147,7 +147,11 @@ const ContentPanning = {
// root scrollable frame, so don't use our synchronous fallback.
return [null, null];
return [nodeContent, this._generateCallback(nodeContent)];
if (nodeContent.scrollMaxX || nodeContent.scrollMaxY) {
return [nodeContent, this._generateCallback(nodeContent)];
}
return [null, null];
},
_generateCallback: function cp_generateCallback(content) {