summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@digia.com>2013-03-04 16:29:19 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-03-04 21:19:56 +0100
commit654380122b8724c7493d293963986a158927c650 (patch)
tree5a367140f0b92a0119d81c46c547d57c2e57507e
parentec32c90179236494792b58c6697160010520ba97 (diff)
downloadqtwebkit-654380122b8724c7493d293963986a158927c650.tar.gz
[Qt] Flash objects won't load until scrolling page
https://bugs.webkit.org/show_bug.cgi?id=110149 Reviewed by Simon Hausmann. Revert r134222. The issue from bug 101836 is no longer reproducable, and the fix was causing flash objects to not load properly. * plugins/PluginPackage.cpp: (WebCore::PluginPackage::determineQuirks): Change-Id: If204d409a6d425022a4f7d21135803bb6f4c309d git-svn-id: http://svn.webkit.org/repository/webkit/trunk@144191 268f45cc-cd09-0410-ab3c-d52691b4dbfc Reviewed-by: Jocelyn Turcotte <jocelyn.turcotte@digia.com>
-rw-r--r--Source/WebCore/plugins/PluginPackage.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/WebCore/plugins/PluginPackage.cpp b/Source/WebCore/plugins/PluginPackage.cpp
index 05b3eb6d7..592771914 100644
--- a/Source/WebCore/plugins/PluginPackage.cpp
+++ b/Source/WebCore/plugins/PluginPackage.cpp
@@ -205,9 +205,7 @@ void PluginPackage::determineQuirks(const String& mimeType)
}
#if PLATFORM(QT)
- // Flash will crash on repeated calls to SetWindow in windowed mode.
- // Defer the setWindow, so we don't set it to the wrong size too early.
- m_quirks.add(PluginQuirkDeferFirstSetWindowCall);
+ // Flash will crash on repeated calls to SetWindow in windowed mode
m_quirks.add(PluginQuirkDontCallSetWindowMoreThanOnce);
#endif