inline-style-background.html (422B)
1 <!DOCTYPE html> 2 <head> 3 <link rel="help" href="https://crbug.com/40934009"> 4 <script src="/resources/testharness.js"></script> 5 <script src="/resources/testharnessreport.js"></script> 6 </head> 7 <body> 8 <div id="d" style="background:revert">Test passes if it does not crash.</div> 9 <script> 10 test(() => { 11 d.offsetTop; 12 d.style.background = "url(dummy.png)"; 13 d.offsetLeft; 14 }); 15 </script> 16 </body>