Bug 674232 Comment 0 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

User Agent: Mozilla/5.0 (Windows NT 5.1; rv:5.0) Gecko/20100101 Firefox/5.0
Build ID: 20110615151330

Steps to reproduce:

.myAnimation {
	-moz-transition: all 7s cubic-bezier(0.00,1.00,0.00,1.00) 1s;
	background-image: url("./img/expand.png");
}

.myAnimation:hover {
	background-image: url("./img/collapse.png");
}



Actual results:

background-image is change immediately on mouse over


Expected results:

background-image must be change after -moz-transition-delay(=1s in my sample)
User Agent: Mozilla/5.0 (Windows NT 5.1; rv:5.0) Gecko/20100101 Firefox/5.0
Build ID: 20110615151330

Steps to reproduce:

```css
.myAnimation {
	-moz-transition: all 7s cubic-bezier(0.00,1.00,0.00,1.00) 1s;
	background-image: url("./img/expand.png");
}

.myAnimation:hover {
	background-image: url("./img/collapse.png");
}
```


Actual results:

background-image is change immediately on mouse over


Expected results:

background-image must be change after -moz-transition-delay(=1s in my sample)
User Agent: Mozilla/5.0 (Windows NT 5.1; rv:5.0) Gecko/20100101 Firefox/5.0
Build ID: 20110615151330

Steps to reproduce:

```css
.myAnimation {
	-moz-transition: all 7s cubic-bezier(0.00,1.00,0.00,1.00) 1s;
	background-image: url("./img/expand.png");
}

.myAnimation:hover {
	background-image: url("./img/collapse.png");
}
```

Actual results:

background-image is change immediately on mouse over


Expected results:

background-image must be change after -moz-transition-delay(=1s in my sample)

Back to Bug 674232 Comment 0