OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <style> | 3 <style> |
4 .table { | 4 .table { |
5 display: table; | 5 display: table; |
6 border-collapse: collapse; | 6 border-collapse: collapse; |
7 } | 7 } |
8 .tableCell { | 8 .tableCell { |
9 display: table-cell; | 9 display: table-cell; |
10 } | 10 } |
(...skipping 15 matching lines...) Expand all Loading... |
26 testRunner.dumpAsText(); | 26 testRunner.dumpAsText(); |
27 | 27 |
28 document.body.offsetTop; | 28 document.body.offsetTop; |
29 span1.style.display = "table-footer-group"; | 29 span1.style.display = "table-footer-group"; |
30 | 30 |
31 document.body.offsetTop; | 31 document.body.offsetTop; |
32 document.body.innerHTML = "Bug <a href='https://bugs.webkit.org/show_bug.cgi?id=
91160'>91160</a>: Crash in WebCore::RenderTable::cellBefore<br>PASS. WebKit didn
't crash"; | 32 document.body.innerHTML = "Bug <a href='https://bugs.webkit.org/show_bug.cgi?id=
91160'>91160</a>: Crash in WebCore::RenderTable::cellBefore<br>PASS. WebKit didn
't crash"; |
33 </script> | 33 </script> |
34 </body> | 34 </body> |
35 </html> | 35 </html> |
OLD | NEW |