needs-layout-transform.html (597B)
1 <!doctype html> 2 <title>Reusing cached lines multiple times should not crash</title> 3 <link rel="author" href="mailto:kojii@chromium.org"> 4 <link rel="help" href="https://crbug.com/1102083"> 5 <script src="/resources/testharness.js"></script> 6 <script src="/resources/testharnessreport.js"></script> 7 <a><object id="target"><b></b></object><br></a> 8 <script> 9 test(() => { 10 const target = document.getElementById('target'); 11 target.style.setProperty('transition-delay', '9999s'); 12 document.body.offsetWidth; 13 target.style.transform = 'scale(1)'; 14 document.body.offsetHeight; 15 }, 'No crash'); 16 </script>