retained-dl-opacity-animation-on-ib-split.html (470B)
1 <html class="reftest-wait"> 2 <head> 3 <style> 4 @keyframes anim { 5 from, to { opacity: 0; } 6 } 7 8 .anim { 9 animation: anim 100s infinite; 10 } 11 </style> 12 </head> 13 <body> 14 <span id="animating" class="reftest-no-display-list">A <span style="display:block"></span> C</span> 15 </body> 16 <script> 17 window.addEventListener("MozReftestInvalidate", () => { 18 document.getElementById("animating").classList.add("anim"); 19 document.documentElement.removeAttribute("class"); 20 }); 21 </script> 22 </html>