summaryrefslogtreecommitdiffstats
path: root/layout/tables/crashtests/1335552-1.html
blob: 95c59f01f967dbb7fd6bd7dd4bd87cdc41ab0445 (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('tbody');
  t.style="writing-mode:sideways-lr";
  document.body.appendChild(t);
  let c = document.createElement('col');
  t.appendChild(c);
};
</script>
</head>
<body>