| OLD | NEW |
| (Empty) |
| 1 <style> | |
| 2 .c3 { position: fixed; } | |
| 3 .c12:first-letter { visibility: inherit; } | |
| 4 .c12 { -webkit-appearance: button; } | |
| 5 .c13 { display: table-row; } | |
| 6 .c13:nth-last-child(odd) { height: 80%; } | |
| 7 </style> | |
| 8 <script> | |
| 9 if (window.layoutTestController) | |
| 10 layoutTestController.dumpAsText(); | |
| 11 | |
| 12 function boom() { | |
| 13 var quote = document.createElement('q'); | |
| 14 document.documentElement.appendChild(quote); | |
| 15 | |
| 16 base = document.createElement('base'); | |
| 17 base2 = document.createElement('base'); | |
| 18 base2.setAttribute('class', 'c3'); | |
| 19 quote.appendChild(base2); | |
| 20 | |
| 21 var ins = document.createElement('ins'); | |
| 22 base2.appendChild(ins); | |
| 23 | |
| 24 var sub = document.createElement('sub'); | |
| 25 var quote3 = document.createElement('q'); | |
| 26 quote3.setAttribute('class', 'c12'); | |
| 27 sub.appendChild(quote3); | |
| 28 | |
| 29 figureRow = document.createElement('figure'); | |
| 30 figureRow.setAttribute('class', 'c13'); | |
| 31 document.documentElement.appendChild(figureRow); | |
| 32 | |
| 33 var col = document.createElement('col'); | |
| 34 col.setAttribute('class', 'c13'); | |
| 35 document.documentElement.appendChild(col); | |
| 36 | |
| 37 var select = document.createElement('select'); | |
| 38 document.documentElement.appendChild(select); | |
| 39 | |
| 40 code = document.createElement('code'); | |
| 41 document.documentElement.appendChild(code); | |
| 42 | |
| 43 quote2 = document.createElement('q'); | |
| 44 setTimeout('quote2.appendChild(code);', 321); | |
| 45 ins.appendChild(sub); | |
| 46 setTimeout('base.appendChild(figureRow);', 251); | |
| 47 text = document.createTextNode('-1435037881'); | |
| 48 setTimeout('figureRow.appendChild(text);', 206); | |
| 49 } | |
| 50 window.onload = boom; | |
| 51 </script> | |
| 52 <p>Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=76842">76842</a>: Crash
in WebCore::RenderTableSection::rowLogicalHeightChanged</p> | |
| 53 <p>This test passes if it does not crash nor ASSERT.</p> | |
| OLD | NEW |