This CSS property generate an error:
_filter:
progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/shared/images/shadow/to
p.png', sizingMethod='scale');
In the code, it check for filter property but not for "hacked" property _filter
*filter -ms-filter
It is better in the condition to do like that (use of strpos):
// Fix for Internet Explorer declaration filter as the declaration value
conrains a colon (Ex.: progid:DXImageTransform.Microsoft.Alpha(Opacity=85);)
if (strpos(strtolower($property), "filter")!==false &&
strtolower(trim($buffer)) == "progid:")
Original issue reported on code.google.com by johann.g...@gmail.com on 9 Mar 2011 at 2:26
Original issue reported on code.google.com by
johann.g...@gmail.com
on 9 Mar 2011 at 2:26