summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-tables/crashtests/move-oof-inside-section-row-with-borders.html
blob: f6fef22ea723874f31ef68ddb432ebfb0835f32b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1289408">
<div style="display:table; border-collapse:collapse;">
  <div style="display:table-row-group; border:solid; background:pink;">
    <div style="display:table-row; border:solid; background:pink;">
      <div style="position:relative;">
        <div id="elm" style="top:0; position:absolute;"></div>
      </div>
    </div>
  </div>
</div>
<script>
  document.body.offsetTop;
  elm.style.top = "10px";
</script>