The CSS3 border-image property has stopped working in firefox 15 using the syntax that worked in firefox 14,
http://jsfiddle.net/uzZVf/2/
Of course the prefix has been removed, but even without it, it fails.
Are there new syntax requirements that didn’t exist before? How can I get border-image functioning correctly?
You need to add:
border-image-width: 4px 4px 4px 4px;to your CSS, otherwise Firefox sets it to 1px wide even with your other border CSS.Demo: http://jsfiddle.net/SO_AMK/uzZVf/4/
The Mozilla dev team updated the border-image specs from the 2008 Working Draft to the 2011 Candidate Recommendation, please see this article for details.