| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 WebKit Bug 89599 - Crash in RenderBlock::layoutPositionedObjects.<br /> | 3 WebKit Bug 89599 - Crash in RenderBlock::layoutPositionedObjects.<br /> |
| 4 Test passes if it does not crash. | 4 Test passes if it does not crash. |
| 5 <style> | 5 <style> |
| 6 table { position: relative; } | 6 table { position: relative; } |
| 7 .span:last-child { position: relative; } | 7 .span:last-child { position: relative; } |
| 8 </style> | 8 </style> |
| 9 <script> | 9 <script> |
| 10 if (window.layoutTestController) | 10 if (window.layoutTestController) |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 table.appendChild(span2); | 26 table.appendChild(span2); |
| 27 table.appendChild(span3); | 27 table.appendChild(span3); |
| 28 | 28 |
| 29 document.documentElement.offsetTop; | 29 document.documentElement.offsetTop; |
| 30 span2.style.display = 'table-header-group'; | 30 span2.style.display = 'table-header-group'; |
| 31 span3.style.display = 'block' | 31 span3.style.display = 'block' |
| 32 } | 32 } |
| 33 window.onload = crash; | 33 window.onload = crash; |
| 34 </script> | 34 </script> |
| 35 </html> | 35 </html> |
| OLD | NEW |