will-change-transform-inline-ref.html (358B)
1 <!doctype html> 2 <title>CSS Test Reference</title> 3 <style> 4 #child { 5 position: fixed; 6 top: 0; 7 left: 0; 8 width: 200px; 9 height: 200px; 10 background-color: blue; 11 } 12 </style> 13 <div style="height: 200px"></div> 14 <span id="container"> 15 Child should be positioned relative to the viewport, not relative to me. 16 17 <div id="child"></div> 18 </span>