Border Radius in FF4

Firefox 4 now supports border radius on images, it also looks like it's dropped the vendor prefix too.

by Ilmv

HTML

<!-- Border radius on an image » view this in Firefox 4 -->
<img src="http://placehold.it/300" />

CSS

img {
    /* also, vendor prefixes have been removed */
    border-radius: 30px;
    box-shadow: 3px 3px 5px red;
}