 ef71eabfc5
			
		
	
	ef71eabfc5
	
	
	
		
			
			This adds tests for animation-name, animation-duration, animation-timing-function, animation-iteration-count, animation-direction, animation-play-state, animation-delay and animation-fill-mode.
		
			
				
	
	
		
			24 lines
		
	
	
		
			216 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			216 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
| a {
 | |
|   animation-duration: initial;
 | |
| }
 | |
| 
 | |
| b {
 | |
|   animation-duration: inherit;
 | |
| }
 | |
| 
 | |
| c {
 | |
|   animation-duration: unset;
 | |
| }
 | |
| 
 | |
| d {
 | |
|   animation-duration: 0s;
 | |
| }
 | |
| 
 | |
| e {
 | |
|   animation-duration: 5ms;
 | |
| }
 | |
| 
 | |
| f {
 | |
|   animation-duration: 5ms, 6s;
 | |
| }
 |