Status: PASS | Duration: 14ms | Subtests: 1/1 | Open test on wpt.live | wpt.fyi
/svg/text/scripted/reattach-crash.html
<!DOCTYPE html> <title>Chrome had a crash on dynamic style changes on <text></title> <link rel="help" href="http://crbug.com/1385936"> <style> #el9 { background-color: blue; } .c3 { transition-duration:0.2s; background-color: red !important; content: ''; } </style> <script> onload = function() { document.body.offsetTop; el9.setAttribute('class', 'c3'); document.body.offsetTop; }; </script> <body> <svg xmlns="http://www.w3.org/2000/svg"><text id="el9"></text></svg> </body>