summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-position/crashtests/inline-containing-block-crash.html
blob: db385e38d18bc5478ce58f46ab016c812e4d7fc8 (plain)
1
2
3
4
5
6
7
8
9
<!DOCTYPE html>
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1431205">
<span style="position: relative;">
  <div id="target" style="position: absolute; left: 0; top: 0; width: 10px; height: 10px; overflow: hidden;"></div>
</span>
<script>
document.body.offsetTop;
document.getElementById('target').textContent = 'kaboom';
</script>