summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-break/chrome-bug-1285596-crash.html
blob: 756db89b0e19cc4035ff72c834927deb52f5a54b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!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=1285596">
<div id="elm" style="columns:2;">
  <div style="display:flex;"></div>
  <div style="display:grid;"></div>
  <div style="display:table;"></div>
</div>
<div style="display:table-row-group;"></div>
<script>
  document.body.offsetTop;
  elm.style.display = "table-row-group";
</script>