From 06021336ecfc4ddad4d1d85b2a61febbad13010e Mon Sep 17 00:00:00 2001 From: "jhoneycutt@apple.com" Date: Mon, 4 Feb 2008 22:15:54 +0000 Subject: [PATCH] 2008-02-04 Jon Honeycutt Reviewed by Darin. Blacklist Silverlight versions older than min required, not newer. * plugins/win/PluginPackageWin.cpp: (WebCore::PluginPackageWin::isPluginBlacklisted): git-svn-id: https://svn.webkit.org/repository/webkit/trunk@29979 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- WebCore/ChangeLog | 9 +++++++++ WebCore/plugins/win/PluginPackageWin.cpp | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog index 67c4867ddb08..9f442bff02fd 100644 --- a/WebCore/ChangeLog +++ b/WebCore/ChangeLog @@ -1,3 +1,12 @@ +2008-02-04 Jon Honeycutt + + Reviewed by Darin. + + Blacklist Silverlight versions older than min required, not newer. + + * plugins/win/PluginPackageWin.cpp: + (WebCore::PluginPackageWin::isPluginBlacklisted): + 2008-02-04 David Hyatt Fix for bug 16751, misparsing of html*.test in CSS. diff --git a/WebCore/plugins/win/PluginPackageWin.cpp b/WebCore/plugins/win/PluginPackageWin.cpp index 8f37d725a728..cf53742fa862 100644 --- a/WebCore/plugins/win/PluginPackageWin.cpp +++ b/WebCore/plugins/win/PluginPackageWin.cpp @@ -145,7 +145,7 @@ bool PluginPackageWin::isPluginBlacklisted() // workaround for Crash in Silverlight when opening microsoft.com. // the latest 1.0 version of Silverlight does not reproduce this crash, so allow it // and any newer versions - if (compareFileVersion(silverlightPluginMinRequiredVersionMS, silverlightPluginMinRequiredVersionLS) >= 0) + if (compareFileVersion(silverlightPluginMinRequiredVersionMS, silverlightPluginMinRequiredVersionLS) < 0) return true; } else if (fileName() == "npmozax.dll") // Bug 15217: Mozilla ActiveX control complains about missing xpcom_core.dll -- 2.36.0