summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-break/chrome-bug-1288769-000-crash.html
blob: 884c92f0852adaeec74103fd9271fb9ea464f8d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<div id="container">
  <div id="child" style="columns:2;">
    <div style="display:flex;"></div>
    <div style="display:grid;"></div>
    <div style="display:table;"></div>
  </div>
</div>
<script>
  document.body.offsetTop;
  container.style.columns = "2";
  container.style.display = "inline-table";
  child.style.display = "table-footer-group";
</script>