зеркало из https://github.com/mozilla/gecko-dev.git
Final part of fix for 13718 -- implement call through nsHTMLImageLoader to get natural dimensions. r=pnunn.
This commit is contained in:
Родитель
75155a5171
Коммит
6b042422d7
|
@ -81,7 +81,12 @@ nsHTMLImageLoader::GetImage()
|
|||
void
|
||||
nsHTMLImageLoader::GetNaturalImageSize(PRUint32* naturalWidth, PRUint32* naturalHeight)
|
||||
{
|
||||
//
|
||||
*naturalWidth = 0;
|
||||
*naturalHeight = 0;
|
||||
if (mImageLoader) {
|
||||
mImageLoader->GetNaturalImageSize(naturalWidth, naturalHeight);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Загрузка…
Ссылка в новой задаче