Changeset 76036 in webkit


Ignore:
Timestamp:
Jan 18, 2011 10:24:13 AM (13 years ago)
Author:
andersca@apple.com
Message:

2011-01-18 Anders Carlsson <andersca@apple.com>

Reviewed by Sam Weinig.

ASSERT in plug-in code when going to youtube
https://bugs.webkit.org/show_bug.cgi?id=52638

  • PluginProcess/PluginControllerProxy.cpp: (WebKit::PluginControllerProxy::paintEntirePlugin): Don't try to paint the plug-in if the plug-in frame is empty.
Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r76034 r76036  
     12011-01-18  Anders Carlsson  <andersca@apple.com>
     2
     3        Reviewed by Sam Weinig.
     4
     5        ASSERT in plug-in code when going to youtube
     6        https://bugs.webkit.org/show_bug.cgi?id=52638
     7
     8        * PluginProcess/PluginControllerProxy.cpp:
     9        (WebKit::PluginControllerProxy::paintEntirePlugin):
     10        Don't try to paint the plug-in if the plug-in frame is empty.
     11
    1122011-01-18  Anders Carlsson  <andersca@apple.com>
    213
  • trunk/Source/WebKit2/PluginProcess/PluginControllerProxy.cpp

    r75527 r76036  
    391391void PluginControllerProxy::paintEntirePlugin()
    392392{
     393    if (m_frameRect.isEmpty())
     394        return;
     395
    393396    m_dirtyRect = m_frameRect;
    394397    paint();
Note: See TracChangeset for help on using the changeset viewer.