root-element-opacity-change.html (544B)
1 <!doctype HTML> 2 <html class="test-wait" style="font-size: 200px; opacity: 0.5"> 3 <link rel="help" href="https://drafts.fxtf.org/compositing/#pagebackdrop"> 4 <link rel="match" href="root-element-opacity-change-ref.html"> 5 <meta name="assert" content="View background should be white after opacity changes from 0.5 to 1"> 6 <script src="/common/rendering-utils.js"></script> 7 TEST 8 <script> 9 waitForAtLeastOneFrame().then(() => { 10 document.documentElement.style.opacity=1; 11 document.documentElement.classList.remove('test-wait'); 12 }); 13 </script> 14 </html>