Closed
Bug 888678
Opened 12 years ago
Closed 12 years ago
animation and animation-fill-mode in same css class results in animation not detected
Categories
(Firefox :: Untriaged, defect)
Tracking
()
RESOLVED
INVALID
People
(Reporter: adrianmoya, Unassigned)
Details
Attachments
(1 file)
4.02 KB,
text/plain
|
Details |
User Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/28.0.1500.52 Chrome/28.0.1500.52 Safari/537.36
Steps to reproduce:
http://adrianmoya.com/presentaciones/bdd-php-phpcolombia-12062013/#/2/8
This slide has an image with css:
.gatoaperro {
animation: gatoaperro 5s ease 0 1 normal;
-webkit-animation: gatoaperro 5s ease 0 1 normal;
animation-fill-mode: forwards;
-webkit-animation-fill-mode: forwards;
}
When you press the down key, the image should rotate
Actual results:
Dev tools shows that the class is picked up but only the animation-fill-mode property is detected, so it doesn't fire the animation.
Expected results:
The animation css property should be detected and the image should rotate when pressing down key (and rotate back when pressing up, see results in chrome browser)
![]() |
||
Comment 1•12 years ago
|
||
CSS Values and Units, <time> unit identifier is required for zero(0).
animation: gatoaperro 5s ease 0s 1 normal;
![]() |
||
Updated•12 years ago
|
Status: UNCONFIRMED → RESOLVED
Closed: 12 years ago
Resolution: --- → INVALID
You need to log in
before you can comment on or make changes to this bug.
Description
•