Forum How do I...?

XML: picking image url from attribute

yet
Given the following XML

<image source="some.jpg"/>

How do you style this tag in order to behave like the equivalent HTML tag

<img src="some.jpg"/>

?
mikeday
image {
    content: attr(source, url)
}