Bug 911889. Part 7: A single change to CSS 'transform' should not be treated as animation. r=dbaron

--HG--
extra : rebase_source : 1462732be85f3b52e8b8a842872a7bde7b54e6e5
This commit is contained in:
Robert O'Callahan 2013-09-04 23:47:25 +12:00
parent 34b2722ab7
commit d0d07c21e8

View File

@ -162,11 +162,7 @@ ActiveLayerTracker::IsStyleAnimated(nsIFrame* aFrame, nsCSSProperty aProperty)
{
LayerActivity* layerActivity = GetLayerActivity(aFrame);
if (layerActivity) {
// XXX should we really treat a single change to transform as animation?
uint8_t minStyleChangesToBeConsideredAnimation =
aProperty == eCSSProperty_opacity ? 2 : 1;
if (layerActivity->RestyleCountForProperty(aProperty) >=
minStyleChangesToBeConsideredAnimation) {
if (layerActivity->RestyleCountForProperty(aProperty) >= 2) {
return true;
}
}