summaryrefslogtreecommitdiffstats
path: root/layout/tables/crashtests/1335552-2.html
blob: dad49092de7f39e583051add2afb7278084ec11e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<html><head>
<meta charset=utf-8>
<script>
window.onload = function() {
  let t = document.createElement('div');
  t.style="writing-mode:sideways-lr; display:table-row-group;";
  document.body.appendChild(t);
  let c = document.createElement('col');
  t.appendChild(c);
};
</script>
</head>
<body>