change-inline-change-abspos-crash.html (526B)
1 <!DOCTYPE html> 2 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org"> 3 <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1255718"> 4 <div style="display:inline-block; position:relative;"> 5 <div id="abspos" style="position:absolute;"></div> 6 </div> 7 <br> 8 <br> 9 <div id="troublemaker" style="display:inline-block; width:2px;"></div> 10 <script> 11 document.body.offsetTop; 12 troublemaker.style.width = "1px"; 13 document.body.offsetTop; 14 abspos.style.paddingLeft = "1px"; 15 </script>