Status: PASS | Duration: 8ms | Subtests: 1/1 | Open test on wpt.live | wpt.fyi
/css/css-cascade/inline-style-revert-layer-crash.html
<!DOCTYPE html> <head> <title>Crash with inline style being changed to revert-rule</title> <link rel="help" href="https://crbug.com/515426873"> </head> <body> <div id="d">Test passes if there is no crash.</div> <script> const d = document.getElementById('d'); d.style.color = 'green'; d.offsetTop; d.style.color = 'revert-rule'; </script> </body>