From kde-commits Thu Sep 10 20:39:04 2009 From: David Faure Date: Thu, 10 Sep 2009 20:39:04 +0000 To: kde-commits Subject: KDE/kdelibs/khtml/css Message-Id: <1252615144.954261.12964.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=125261515219501 SVN commit 1022114 by dfaure: forwardport assert removal (to avoid crash on getPropertyCSSValue: Unhandled property: "filter") M +1 -1 css_renderstyledeclarationimpl.cpp --- trunk/KDE/kdelibs/khtml/css/css_renderstyledeclarationimpl.cpp #1022113:1022114 @@ -1186,7 +1186,7 @@ break; default: kWarning() << "Unhandled property:" << getPropertyName(propertyID); - Q_ASSERT( 0 ); + //Q_ASSERT( 0 ); break; } return 0;