[WK2] selection does not disappear after coping the text
[framework/web/webkit-efl.git] / LayoutTests / fast / table / empty-section-crash.html
1 <html>
2 <head>
3     <title></title>
4     <script type="text/javascript">
5         function finish()
6         {
7             /* Since the crash happens in painting code, force painting. This
8                makes the test work even when run without the --pixel option. */
9             layoutTestController.display();
10             layoutTestController.notifyDone();
11         }
12
13         function test()
14         {
15             if (window.layoutTestController) {
16                 layoutTestController.waitUntilDone();
17                 setTimeout(finish, 0);
18                 layoutTestController.dumpAsText();
19             }
20         }
21     </script>
22 </head>
23 <body onload="test();">
24     <p>
25         Test for <i><a href="https://bugs.webkit.org/show_bug.cgi?id=9009">http://bugzilla.opendarwin.org/show_bug.cgi?id=9009</a>
26         REGRESSION: ToT crash in WebCore at Zap2it</i>.
27     </p>
28     <p>
29         No crash means PASS.
30     </p>
31     <table style="position: absolute; top: -6px; border-collapse: collapse; border-top: 10px solid; width: 100px; height: 100px;">
32     <tbody></tbody>
33     <tbody><tr><td></td></tr></tbody>
34     </table>
35 </body>