summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-contain/container-queries/crashtests/chrome-bug-1346969-crash.html
blob: 37c74cf8cb1c9f78544fea655b1e071bb14296ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!doctype html>
<title>Chrome crash bug 1346969</title>
<link rel="help" href="https://crbug.com/1346969">
<table id="table"> </table>
<script>
  document.body.offsetTop;
  table.style.containerType = "inline-size";
  table.style.appearance = "auto";
  table.style.columnCount = 2;
  table.createTBody();
  table.createCaption();
  document.body.offsetTop;
  table.style.whiteSpace = "pre-wrap";
</script>