Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / crash-beforeBorder-dirty-section.html
blobb287d3bec19837235d1f621ea55954929aa39e8b
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 #el1 {
6 border-collapse: collapse;
7 -webkit-writing-mode: vertical-rl;
9 </style>
10 </head>
11 <body>
12 <script>
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);
26 function crash() {
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);
32 </script>
33 </body>
34 </html>