Changeset 83316 in webkit
- Timestamp:
- Apr 8, 2011, 10:58:45 AM (14 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r83312 r83316 1 2011-04-08 Misha Tyutyunik <michael.tyutyunik@nokia.com> 2 3 Reviewed by Laszlo Gombos. 4 5 [Qt] Plugin is not scrolled together with page content or jumping 6 when content is rendered using cache (backing store). 7 https://bugs.webkit.org/show_bug.cgi?id=56130 8 9 This is a Symbian portion of the fix. For Linux it looks like 10 it's enough to call set geometry which should be addressed in 11 https://bugs.webkit.org/show_bug.cgi?id=57179 12 13 No new tests required. This can be tested with manual tests from 14 WebCore/manual-tests/qt and WebCore/manual-tests/plugins 15 16 * plugins/symbian/PluginViewSymbian.cpp: 17 (WebCore::PluginView::updatePluginWidget): 18 1 19 2011-04-08 Abhishek Arya <inferno@chromium.org> 2 20 -
trunk/Source/WebCore/plugins/symbian/PluginViewSymbian.cpp
r79988 r83316 103 103 return; 104 104 105 // in order to move/resize the plugin window at the same time as the rest of frame 106 // during e.g. scrolling, we set the mask and geometry in the paint() function, but 107 // as paint() isn't called when the plugin window is outside the frame which can 108 // be caused by a scroll, we need to move/resize immediately. 109 if (!m_windowRect.intersects(frameView->frameRect())) 110 setNPWindowIfNeeded(); 105 setNPWindowIfNeeded(); 111 106 } 112 107
Note:
See TracChangeset
for help on using the changeset viewer.