position-absolute-crash-chrome-008.html (551B)
1 <!DOCTYPE html> 2 <link rel="author" href="mailto:atotic@chromium.org"> 3 <script src="/resources/testharness.js"></script> 4 <script src="/resources/testharnessreport.js"></script> 5 <link rel="help" href="https://crbug.com/967977"> 6 <meta name="assert" content="zero width inline abspos container with borders does not cause a crash"> 7 <style> 8 </style> 9 <span style="border-bottom:1px solid; filter:blur(2px);"> 10 <div style="position:absolute"></div> 11 </span> 12 <script> 13 document.body.offsetTop; 14 test(() => { 15 }, 'test passes if it does not crash'); 16 </script>