forked from mirrors/gecko-dev
		
	We should create a stacking context for any transform or opacity animations that are either "in effect" (what we currently do) OR "current", i.e. scheduled to run or running. *BUT* for now, we don't create any stacking context in before phase without fill:backwards or fill:both because the property never wins in cascade until the animation gets "in effect". This restriction will be removed in a subsequent patch in this bug after landing bug 1279403. MozReview-Commit-ID: 8RyLJNPtoKI --HG-- rename : layout/reftests/css-animations/stacking-context-transform-animation-ref.html => layout/reftests/css-animations/stacking-context-animation-ref.html extra : rebase_source : 0d9c8d9e03ca0d400e9b376b9416fbabffd10034
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			296 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			296 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<title>Reference of testcases for bug 1273042</title>
 | 
						|
<style>
 | 
						|
span {
 | 
						|
  height: 100px;
 | 
						|
  width: 100px;
 | 
						|
  background: green;
 | 
						|
  position: fixed;
 | 
						|
  top: 50px;
 | 
						|
  z-index: -1;
 | 
						|
}
 | 
						|
#test {
 | 
						|
  height: 100px;
 | 
						|
  width: 100px;
 | 
						|
  background: blue;
 | 
						|
}
 | 
						|
</style>
 | 
						|
<span></span>
 | 
						|
<div id="test"></div>
 |