 8f44383253
			
		
	
	8f44383253
	
	
	
		
			
			This adds tests for transition-property, transition-delay and transition-timing-function.
		
			
				
	
	
		
			28 lines
		
	
	
		
			234 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			234 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
| a {
 | |
|   transition-delay: initial;
 | |
| }
 | |
| 
 | |
| b {
 | |
|   transition-delay: inherit;
 | |
| }
 | |
| 
 | |
| c {
 | |
|   transition-delay: unset;
 | |
| }
 | |
| 
 | |
| d {
 | |
|   transition-delay: 0;
 | |
| }
 | |
| 
 | |
| e {
 | |
|   transition-delay: 5s;
 | |
| }
 | |
| 
 | |
| f {
 | |
|   transition-delay: 5ms;
 | |
| }
 | |
| 
 | |
| g {
 | |
|   transition-delay: 5ms, 5s;
 | |
| }
 |