TinyMCE Talk:Configuration/class filter
From Moxiecode Documentation Wiki
Note that element names in IE are in uppercase, but they are lowercase in Firefox, so to test for p.someClass you need to go:
if (/^[pP]\.someClass/.test(rule))
return false;
Or make the pattern case insensitive.
