html-becomes-fixed-ref.html (300B)
1 <!DOCTYPE html> 2 <html id=r class=f> 3 <head> 4 <style> 5 6 .f { position: fixed; background: #eee } 7 #part { position: absolute; left: 50px; top: 50px; width: 50px; height: 50px; 8 padding: 5px; view-transition-name: p; background: #acf; } 9 10 </style> 11 </head> 12 <body> 13 <div id=part>A</div> 14 </body> 15 </html>