Bug 1317562. Make style images use async image notifications when requesting decoding. r=aosmond

This commit is contained in:
Timothy Nikkel 2016-12-25 00:18:08 -06:00
Родитель 4365be8782
Коммит 3ae338fa8f
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -2257,7 +2257,7 @@ nsStyleImage::StartDecoding() const
if (!req) {
return false;
}
return req->StartDecodingWithResult(imgIContainer::FLAG_NONE);
return req->StartDecodingWithResult(imgIContainer::FLAG_ASYNC_NOTIFY);
}
// null image types always return false from IsComplete, so we do the same here.
return mType != eStyleImageType_Null ? true : false;