[css3-transitions] Can/should a change of currentColor's computed value trigger a transition ?

If I have:

#test {
	transition-property: background-color;
	transition-duration: 0.20s;
	background-color: currentColor;
	color:blue;
}

#test:hover {
	color:red;
}

What happens ?

Received on Friday, 11 February 2011 22:42:36 UTC