Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/tables/crashtests/crashtests.list
<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>