OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <style> | 4 <style> |
5 :after { display: table-cell; content: "Foo"; } | 5 :after { display: table-cell; content: "Foo"; } |
6 :first-child { display: table-cell; } | 6 :first-child { display: table-cell; } |
7 :before { display: table-column; content: "Bar"; } | 7 :before { display: table-column; content: "Bar"; } |
8 </style> | 8 </style> |
9 <script type="text/javascript"> | 9 <script type="text/javascript"> |
10 if (window.testRunner) | 10 if (window.testRunner) |
(...skipping 12 matching lines...) Expand all Loading... |
23 } | 23 } |
24 | 24 |
25 window.addEventListener("load", crash, false) | 25 window.addEventListener("load", crash, false) |
26 </script> | 26 </script> |
27 </head> | 27 </head> |
28 <body id="target"> | 28 <body id="target"> |
29 <p>Test for bug <a href="https://bugs.webkit.org/show_bug.cgi?id=89496">89496</a
>: Crash in RenderTableSection::addCell.</p> | 29 <p>Test for bug <a href="https://bugs.webkit.org/show_bug.cgi?id=89496">89496</a
>: Crash in RenderTableSection::addCell.</p> |
30 <p>This test passes if it doesn't CRASH or ASSERT.</p> | 30 <p>This test passes if it doesn't CRASH or ASSERT.</p> |
31 </body> | 31 </body> |
32 </html> | 32 </html> |
OLD | NEW |