forked from mirrors/gecko-dev
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			422 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			422 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
function waitForIterationChange(animation) {
 | 
						|
  var initialIteration = animation.effect.getComputedTiming().currentIteration;
 | 
						|
  return new Promise(resolve => {
 | 
						|
    window.requestAnimationFrame(handleFrame = () => {
 | 
						|
      if (animation.effect.getComputedTiming().currentIteration !=
 | 
						|
            initialIteration) {
 | 
						|
        resolve();
 | 
						|
      } else {
 | 
						|
        window.requestAnimationFrame(handleFrame);
 | 
						|
      }
 | 
						|
    });
 | 
						|
  });
 | 
						|
}
 |