 b9f61e3a8e
			
		
	
	b9f61e3a8e
	
	
	
		
			
			They are deprecated, which causes a warning that makes the test fail. https://bugzilla.gnome.org/show_bug.cgi?id=769004
		
			
				
	
	
		
			17 lines
		
	
	
		
			296 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			296 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
| @keyframes anim {
 | |
|   100% { background-image: url("green-20x20.png"); }
 | |
| }
 | |
| 
 | |
| @keyframes ref {
 | |
|   100% { background-image: linear-gradient(to bottom, lime, lime); }
 | |
| }
 | |
| 
 | |
| * {
 | |
|   background: linear-gradient(to bottom, red, red);
 | |
|   animation: anim steps(5,end) 20s;
 | |
| }
 | |
| 
 | |
| #reference {
 | |
|   animation-name: ref;
 | |
| }
 |