I want to create buttons like these:

In modern browsers the effect is created using inset box-shadow and filters.
For IE8 - pseudo-elements are chosen.
For IE7 - I use special tags wrapped in conditional comments.
Demo: http://jsfiddle.net/8M5Tt/68/embedded/result/
Main Question: Why don't filters work on pseudo elements in IE8?
Update:
I guess that filters do not work on css-generated content, despite the fact that it is not mentioned on this msdn page.
I solved my problem in IE8 by applying filters to conditional elements like I do for IE7.
Final demo: http://jsfiddle.net/matmuchrapna/8M5Tt/73/
Update 2:
I solved my problem, but the main question is still unanswered:
“Why don't filters work on pseudo elements in IE8?”
Started a bounty.
Update 3: I created testcase only for filters(and also -ms-filter) on ie8:

But the filters still don't want to work on pseudo-elements.
Update 4: I think Scotts answer is closest to truth.