stacking-context-transform-none-in-delay.html (400B)
1 <!DOCTYPE html> 2 <title> 3 Transform animation creates stacking context in delay phase 4 </title> 5 <style> 6 span { 7 height: 100px; 8 width: 100px; 9 position: fixed; 10 background: green; 11 top: 50px; 12 } 13 @keyframes TransformNone { 14 from, to { transform: none } 15 } 16 #test { 17 width: 100px; height: 100px; 18 background: blue; 19 animation: TransformNone 100s 100s; 20 } 21 </style> 22 <span></span> 23 <div id="test"></div>