Updates:
        Owner: [email protected]
        Labels: -Area-Compat -v-152.0 Area-WebKit Mstone-2.0

Comment #20 on issue 2044 by [email protected]: [CRASH]Renderer crashes when  
zoomed into street level on maps.yahoo.com
http://code.google.com/p/chromium/issues/detail?id=2044

Looks like we are getting something wrong here:

     m_imageBuffer->context()->scale(FloatSize(size.width() /  
unscaledSize.width(),
size.height() / unscaledSize.height()));

in this function

void HTMLCanvasElement::createImageBuffer() const
{
     ASSERT(!m_imageBuffer);

     m_createdImageBuffer = true;

     FloatSize unscaledSize(width(), height());
     IntSize size = convertLogicalToDevice(unscaledSize);
     if (!size.width() || !size.height())
         return;

     m_imageBuffer.set(ImageBuffer::create(size, false).release());
     m_imageBuffer->context()->scale(FloatSize(size.width() /  
unscaledSize.width(),
size.height() / unscaledSize.height()));
     m_imageBuffer->context()->setShadowsIgnoreTransforms(true);
}


--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~---------~--~----~------------~-------~--~----~
Automated mail from issue updates at http://crbug.com/
Subscription options: http://groups.google.com/group/chromium-bugs
-~----------~----~----~----~------~----~------~--~---

Reply via email to