Bug 1172224 - Ensure that docshells return an appropriate value for APZ-enabled even if they don't have a presShell. r=dvander

This commit is contained in:
Kartikaya Gupta 2015-06-08 14:46:47 -04:00
Родитель 7eb8c4268d
Коммит 983c6000d6
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -13867,7 +13867,9 @@ nsDocShell::GetAsyncPanZoomEnabled(bool* aOut)
return NS_OK;
}
*aOut = false;
// If we don't have a presShell, fall back to the default platform value of
// whether or not APZ is enabled.
*aOut = gfxPlatform::AsyncPanZoomEnabled();
return NS_OK;
}