6 border-collapse: collapse;
7 -webkit-writing-mode: vertical-rl;
13 if (window
.testRunner
)
14 testRunner
.dumpAsText();
16 var wrapper
= document
.createElement('div');
17 wrapper
.style
.display
= 'inline-block';
18 document
.body
.appendChild(wrapper
);
19 var table
= document
.createElement('table');
20 table
.setAttribute('id', 'el1');
21 wrapper
.appendChild(table
);
22 tbody
= document
.createElement('tbody');
23 tbody
.setAttribute('id', 'el2');
24 table
.appendChild(tbody
);
27 tbody
.style
.display
= 'table';
28 document
.body
.innerHTML
= "<a href='https://bugs.webkit.org/show_bug.cgi?id=75215'>Bug 75215: Crash in LayoutTable::borderBefore<a><br>This test has passed!";
31 window
.addEventListener('load', crash
, false);