ruby-text-dynamic-style.html (490B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <link rel="help" href="https://crbug.com/347597917"/> 4 <link rel="match" href="reference/ruby-text-dynamic-style-ref.html"> 5 <style> 6 .reftest-wait rt { 7 background-color: red; 8 } 9 ruby { 10 position: relative; 11 } 12 p { 13 position: relative; 14 } 15 </style> 16 <p><ruby>base<rt>annotation</ruby></p> 17 <script> 18 requestAnimationFrame(() => { 19 requestAnimationFrame(() => { 20 document.documentElement.classList.remove('reftest-wait'); 21 }); 22 }); 23 </script> 24 </html>