mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-04 07:10:57 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			527 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			527 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!doctype html>
 | 
						|
<link rel="match" href="../expected/css-keyframe-invalid-transform-should-not-render-ref.html" />
 | 
						|
<style>
 | 
						|
    #foo {
 | 
						|
        width: 100px;
 | 
						|
        height: 100px;
 | 
						|
        background-color: blue;
 | 
						|
        animation: anim 100s;
 | 
						|
    }
 | 
						|
    @keyframes anim {
 | 
						|
        from {
 | 
						|
            transform: scale(0);
 | 
						|
        }
 | 
						|
        to {
 | 
						|
            transform: scale(0);
 | 
						|
        }
 | 
						|
    }
 | 
						|
</style>
 | 
						|
<div id="foo"></div>
 | 
						|
<script>
 | 
						|
    document.getElementById("foo").getAnimations()[0].currentTime = 50_000; // 50 seconds
 | 
						|
</script>
 |